/* =====================================================
   Eclat DigiStrat Advisors - Modern Professional Theme
   Saffron, Gold, Orange & Crimson Color Palette
   ===================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* Root Variables */
:root {
    /* Primary Colors - Pastel Saffron */
    --saffron: #FFBD80;
    --saffron-light: #FFD4A8;
    --saffron-dark: #F5A855;

    /* Gold Tones - Softer */
    --gold: #E8C872;
    --gold-light: #F5DFA0;
    --gold-dark: #D4A84A;

    /* Orange Tones - Pastel */
    --orange: #FFB88C;
    --orange-light: #FFCBA4;
    --orange-dark: #F5A070;

    /* Accent Colors - Muted */
    --crimson: #C45C6A;
    --crimson-dark: #A34857;
    --crimson-light: #D88090;

    /* Neutrals - Deep Crimson (no black) */
    --dark: #6B2232;
    --dark-secondary: #8B3A47;
    --text-primary: #5A2030;
    --text-secondary: #7A4A54;
    --text-light: #A87480;

    /* Backgrounds - Warm & Soft */
    --bg-light: #FFFCF8;
    --bg-cream: #FFF8F0;
    --bg-warm: #FFF4E8;
    --white: #FFFFFF;

    /* Gradients - Softer */
    --gradient-primary: linear-gradient(135deg, #FFBD80 0%, #F5A855 100%);
    --gradient-warm: linear-gradient(135deg, #FFD4A8 0%, #E8C872 100%);
    --gradient-royal: linear-gradient(135deg, #FFBD80 0%, #D88090 100%);
    --gradient-dark: linear-gradient(135deg, #6B2232 0%, #8B3A47 100%);
    --gradient-subtle: linear-gradient(180deg, #FFFFFF 0%, #FFF8F0 100%);

    /* Shadows - Softer */
    --shadow-sm: 0 2px 8px rgba(196, 92, 106, 0.06);
    --shadow-md: 0 4px 20px rgba(196, 92, 106, 0.10);
    --shadow-lg: 0 8px 40px rgba(196, 92, 106, 0.12);
    --shadow-xl: 0 20px 60px rgba(196, 92, 106, 0.15);
    --shadow-glow: 0 10px 40px rgba(255, 189, 128, 0.25);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    background: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--crimson);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.display-heading {
    font-family: 'Playfair Display', serif;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-crimson { color: var(--crimson) !important; }
.text-crimson-custom { color: var(--crimson) !important; }
.text-saffron { color: var(--saffron) !important; }
.text-gold { color: var(--gold) !important; }
.text-warning { color: var(--gold-dark) !important; }
.text-danger { color: var(--crimson) !important; }
.text-dark { color: var(--dark) !important; }
.text-muted { color: var(--text-secondary) !important; }

.fw-semibold { font-weight: 600 !important; }

/* Section Styling */
section {
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* =====================================================
   NAVBAR - Modern Glass Effect
   ===================================================== */
.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 189, 128, 0.15);
    transition: all var(--transition-normal);
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

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

.navbar-brand img {
    transition: transform var(--transition-normal);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-brand .brand-text {
    font-size: 1.1rem;
    line-height: 1.2;
    font-weight: 600;
}

.navbar-brand .brand-text .text-danger {
    font-weight: 800;
    color: var(--crimson) !important;
}

.navbar-brand .text-warning-custom {
    color: var(--gold-dark) !important;
    font-weight: 500;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

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

.nav-link:hover::after {
    width: 60%;
}

.nav-link.btn {
    background: var(--gradient-primary);
    color: white !important;
    border: none;
    padding: 0.6rem 1.5rem !important;
}

.nav-link.btn::after {
    display: none;
}

.nav-link.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* =====================================================
   HERO SECTION - Modern Split Design
   ===================================================== */
.hero-section {
    min-height: 100vh;
    padding: 140px 0 100px;
    background: var(--gradient-subtle);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-light) 0%, transparent 100%);
    pointer-events: none;
}

.hero-section h1 {
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-section h1 .text-dark {
    color: var(--text-primary) !important;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-logo {
    max-width: 420px;
    filter: drop-shadow(0 20px 50px rgba(255, 189, 128, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* =====================================================
   TAGLINE BANNER - Gradient Strip
   ===================================================== */
.tagline-banner {
    background: var(--gradient-primary);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.tagline-banner::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.05'%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;
}

.tagline-item {
    text-align: center;
    padding: 1rem;
}

.tagline-item i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0.75rem;
    display: block;
}

.tagline-item h5 {
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   PAGE HEADER - Modern Gradient
   ===================================================== */
.page-header {
    background: var(--gradient-primary);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.page-header h1 {
    color: white !important;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(107, 34, 50, 0.15);
}

.page-header .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.page-header .breadcrumb-item a:hover {
    color: white;
}

.page-header .breadcrumb-item.active {
    color: white;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* =====================================================
   CARDS - Modern Glass Cards
   ===================================================== */
.usp-card, .service-card, .leader-card, .team-card, .client-type-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(196, 92, 106, 0.10);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.usp-card::before, .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.usp-card:hover, .service-card:hover, .leader-card:hover, .client-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.usp-card:hover::before, .service-card:hover::before {
    transform: scaleX(1);
}

/* USP Cards */
.usp-section {
    padding: 6rem 0;
    background: var(--bg-cream);
}

.usp-card {
    text-align: center;
    height: 100%;
}

.usp-card i {
    font-size: 2.5rem;
    color: var(--saffron);
    margin-bottom: 1.25rem;
    display: inline-block;
    transition: transform var(--transition-normal);
}

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

.usp-card h5 {
    color: var(--crimson);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.usp-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Service Cards */
.service-card {
    height: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 189, 128, 0.3);
    transition: transform var(--transition-normal);
}

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

.service-icon i {
    font-size: 1.75rem;
    color: white;
}

.service-card h4 {
    color: var(--crimson);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.service-features li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: "✓";
    color: var(--saffron);
    font-weight: 700;
    font-size: 0.9rem;
}

/* =====================================================
   LEADERSHIP SECTION
   ===================================================== */
.leadership-preview {
    padding: 6rem 0;
    background: var(--gradient-subtle);
}

.leader-card, .team-card {
    text-align: center;
    padding: 2.5rem 2rem;
}

.leader-img, .team-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 10px 40px rgba(255, 189, 128, 0.25);
    transition: all var(--transition-normal);
}

.leader-card:hover .leader-img,
.team-card:hover .team-img {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 189, 128, 0.35);
}

.leader-card h4, .team-info h4 {
    color: var(--crimson);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.25rem;
}

.leader-card p, .team-info p.text-warning {
    color: var(--gold-dark) !important;
    font-weight: 600;
    font-size: 0.95rem;
}

.team-card {
    padding: 0;
    overflow: hidden;
}

.team-img-wrapper {
    padding: 2.5rem 2rem 1.5rem;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%);
}

.team-info {
    padding: 1rem 2rem 2rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--saffron);
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

/* =====================================================
   USP ITEMS (Services Page)
   ===================================================== */
.usp-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--saffron);
    transition: all var(--transition-normal);
}

.usp-item:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--gold);
    transform: translateX(5px);
}

.usp-item h5 {
    color: var(--crimson);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.usp-icon i {
    color: var(--saffron) !important;
}

/* Icon Circle */
.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-warning-subtle {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF5EB 100%);
}

/* Client Type Cards */
.client-type-card {
    text-align: center;
    padding: 2.5rem 2rem;
}

.client-type-card i {
    font-size: 3.5rem;
    color: var(--saffron) !important;
    margin-bottom: 1.25rem;
    display: block;
}

.client-type-card h4 {
    color: var(--crimson);
    margin-bottom: 1rem;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100%;
    right: -50%;
    width: 100%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    color: white !important;
    font-weight: 800;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
}

/* =====================================================
   CONTACT FORM - Modern Design
   ===================================================== */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(196, 92, 106, 0.10);
}

.contact-form-wrapper h3 {
    color: var(--crimson);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-section-title {
    color: var(--crimson);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-cream);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title i {
    color: var(--saffron) !important;
}

.form-label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--bg-cream);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--bg-light);
}

.form-control:focus, .form-select:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 4px rgba(255, 189, 128, 0.15);
    background: var(--white);
}

.form-control::placeholder {
    color: var(--text-light);
}

/* Contact Info Card */
.contact-info-card {
    background: var(--gradient-subtle);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 189, 128, 0.15);
}

.contact-info-card h4, .contact-info-card h5 {
    color: var(--crimson);
    font-weight: 700;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255, 189, 128, 0.3);
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-details h6 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.contact-details a {
    color: var(--saffron);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-details a:hover {
    color: var(--gold-dark);
}

/* Org Type Badges */
.org-type-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    margin: 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    border-left: 4px solid var(--saffron);
    transition: all var(--transition-fast);
}

.org-type-badge:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.org-type-badge i {
    color: var(--saffron);
}

/* Quick Info Cards */
.quick-info-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(196, 92, 106, 0.10);
    transition: all var(--transition-fast);
}

.quick-info-card:hover {
    box-shadow: var(--shadow-md);
}

.quick-info-card h6 {
    color: var(--crimson);
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.quick-info-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 189, 128, 0.25);
}

.quick-info-icon i {
    font-size: 1.1rem;
    color: white;
}

/* =====================================================
   FOOTER - Modern Dark Design
   ===================================================== */
.footer {
    background: var(--gradient-dark);
    padding-top: 5rem;
    padding-bottom: 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer h5 {
    color: var(--saffron) !important;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

.tagline-text {
    color: var(--gold-light) !important;
    font-weight: 500;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    color: var(--gold);
    font-size: 0.8rem;
}

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

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* =====================================================
   BUTTONS - Modern Style
   ===================================================== */
.btn {
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    font-size: 1rem;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-warning {
    background: var(--gradient-primary);
    color: var(--crimson-dark);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 189, 128, 0.3);
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 189, 128, 0.4);
    color: var(--crimson-dark);
}

.btn-outline-warning {
    border: 2px solid var(--saffron);
    color: var(--saffron);
    background: transparent;
}

.btn-outline-warning:hover {
    background: var(--saffron);
    color: white;
    transform: translateY(-3px);
}

.btn-outline-dark {
    border: 2px solid var(--crimson);
    color: var(--crimson);
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--crimson);
    color: white;
    transform: translateY(-3px);
}

.btn-light {
    background: white;
    color: var(--crimson);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--saffron-light);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 212, 168, 0.4);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* =====================================================
   ALERTS
   ===================================================== */
.alert {
    border-radius: var(--radius-md);
    border: none;
    padding: 1rem 1.25rem;
}

.alert-success {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
    border-left: 4px solid var(--gold);
    color: var(--text-primary);
}

.alert-danger {
    background: linear-gradient(135deg, #FFF0F3 0%, #FFF5F7 100%);
    border-left: 4px solid var(--crimson);
    color: var(--crimson-dark);
}

/* =====================================================
   BACKGROUNDS
   ===================================================== */
.bg-light {
    background: var(--bg-cream) !important;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        padding: 120px 0 80px;
    }

    .hero-section .lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-logo {
        max-width: 300px;
        margin-top: 3rem;
    }

    .navbar-brand .brand-text {
        font-size: 0.95rem;
    }

    section {
        padding: 4rem 0;
    }
}

@media (max-width: 767.98px) {
    html {
        font-size: 15px;
    }

    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-logo {
        max-width: 220px;
    }

    .page-header {
        padding: 120px 0 50px;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .leader-img, .team-img {
        width: 140px;
        height: 140px;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .btn-lg {
        padding: 0.85rem 1.75rem;
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* =====================================================
   SCROLLBAR
   ===================================================== */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--saffron);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Selection */
::selection {
    background: var(--saffron);
    color: white;
}

/* =====================================================
   SINGLE PAGE SCROLLING STYLES
   ===================================================== */

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

/* Active Nav Link */
.nav-link.active {
    color: var(--saffron) !important;
    font-weight: 600;
}

.nav-link.active::after {
    width: 60%;
}

/* TADA Strip in Hero */
.tada-strip {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.tada-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    color: white;
    transition: all var(--transition-normal);
}

.tada-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.tada-item i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.tada-item span {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.tada-item small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.85;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    color: var(--saffron);
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    animation: bounce 2s infinite;
    transition: all var(--transition-normal);
}

.scroll-down:hover {
    background: var(--saffron);
    color: white;
    box-shadow: var(--shadow-glow);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Expertise Cards */
.expertise-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(196, 92, 106, 0.10);
    transition: all var(--transition-normal);
    text-align: center;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 189, 128, 0.3);
    transition: transform var(--transition-normal);
}

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

.expertise-icon i {
    font-size: 2rem;
    color: white;
}

.expertise-card h4 {
    color: var(--crimson);
    font-weight: 700;
    margin-bottom: 1rem;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.expertise-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.expertise-list li::before {
    content: "\f26a";
    font-family: "bootstrap-icons";
    color: var(--saffron);
    font-size: 0.8rem;
}

/* Standalone page dark sections (expertise.html, services.html) */
.experience-highlight,
.why-works-section {
    background: var(--gradient-dark);
}

/* Experience Banner */
.experience-banner {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.experience-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.experience-banner h3 {
    color: white !important;
}

/* Work Steps */
.work-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(196, 92, 106, 0.10);
    transition: all var(--transition-normal);
    position: relative;
}

.work-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 189, 128, 0.4);
}

.work-step i {
    font-size: 2.5rem;
    color: var(--saffron);
    margin-bottom: 1rem;
    display: block;
}

.work-step h4 {
    color: var(--crimson);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.work-step p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Client Type Cards (enhanced for single page) */
.client-type-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(196, 92, 106, 0.10);
    transition: all var(--transition-normal);
}

.client-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.client-type-card i {
    font-size: 2.5rem;
    color: var(--saffron) !important;
    margin-bottom: 1rem;
    display: block;
}

.client-type-card h5 {
    color: var(--crimson);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.client-type-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* About Section Visual */
.about-visual {
    background: var(--gradient-warm);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--dark-secondary);
    font-weight: 500;
    margin-top: 0.5rem;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.about-badge {
    background: rgba(255, 255, 255, 0.6);
    color: var(--dark);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(10px);
}

.about-badge i {
    color: var(--crimson);
}

@media (max-width: 767.98px) {
    .about-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .about-visual {
        padding: 2rem;
        margin-bottom: 1rem;
    }
}

/* Hero Section Enhancement */
.hero-section {
    min-height: 100vh;
    padding: 100px 0 60px;
    background: var(--gradient-subtle);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Smooth transitions for scroll spy */
html {
    scroll-padding-top: 80px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 60px 0;
    }

    .tada-strip {
        margin-top: 2rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .experience-banner {
        padding: 2rem;
    }
}

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

    .tada-item {
        padding: 0.75rem;
    }

    .tada-item i {
        font-size: 1.25rem;
    }

    .tada-item span {
        font-size: 0.85rem;
    }

    .expertise-card, .work-step {
        padding: 1.5rem;
    }

    .expertise-icon {
        width: 60px;
        height: 60px;
    }

    .expertise-icon i {
        font-size: 1.5rem;
    }
}

/* =====================================================
   SUCCESS & ERROR CARDS
   ===================================================== */

/* Success Card */
.success-card {
    background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
    border: 1px solid #86efac;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.15);
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon-wrapper {
    margin-bottom: 1.5rem;
}

.success-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3);
    animation: scaleIn 0.5s ease-out 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-icon-circle i {
    font-size: 2.5rem;
    color: white;
}

.success-title {
    color: #166534;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.success-message {
    color: #15803d;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Success Steps */
.success-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 2rem;
    text-align: left;
}

.success-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon.completed {
    background: #22c55e;
    color: white;
}

.step-icon.pending {
    background: #fef3c7;
    color: #d97706;
}

.step-icon i {
    font-size: 1rem;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.step-status {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.success-footer {
    padding-top: 1.5rem;
    border-top: 1px solid #bbf7d0;
}

.success-footer p {
    color: #166534;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Error Card */
.error-card {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fca5a5;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.15);
}

.error-icon-wrapper {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.error-card h5 {
    color: #991b1b;
    font-weight: 700;
}

.error-card p {
    color: #b91c1c;
}

/* Submit Button Loading State */
.btn.submitting {
    pointer-events: none;
    opacity: 0.85;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
}

#submitBtn {
    min-width: 200px;
    position: relative;
    transition: all 0.3s ease;
}

#submitBtn:disabled {
    background: var(--gradient-warm);
}

/* Loading Overlay (optional for full form) */
.form-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: var(--radius-xl);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--saffron);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: var(--text-primary);
    font-weight: 500;
}

/* Responsive adjustments for success card */
@media (max-width: 767.98px) {
    .success-card {
        padding: 1.5rem;
    }

    .success-icon-circle {
        width: 60px;
        height: 60px;
    }

    .success-icon-circle i {
        font-size: 1.75rem;
    }

    .success-steps {
        gap: 0.75rem;
    }

    .success-step {
        padding: 0.5rem 0.75rem;
    }
}
