/* =============================================
   MAYIL TAXI - FINAL PEACOCK THEME
   Color Palette Enforcement + Icon Styling
   ============================================= */

:root {
    /* ===== PRIMARY PEACOCK COLORS ===== */
    --peacock-blue: #1A4F7A;
    --teal: #248A8A;
    --turquoise: #39A9DB;
    --deep-indigo: #2A3A58;

    /* ===== ACCENT COLORS ===== */
    --gold: #C6A15D;
    --emerald: #10B981;
    /* Use sparingly */

    /* ===== NEUTRAL COLORS ===== */
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --bg-cream: #F5F1E8;
    --bg-white: #FFFFFF;

    /* ===== GRADIENTS ===== */
    --gradient-peacock-button: linear-gradient(135deg, var(--peacock-blue) 0%, var(--teal) 50%, var(--deep-indigo) 100%);
    --gradient-peacock-header: linear-gradient(90deg, var(--teal) 0%, var(--turquoise) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, #D4AF37 100%);

    /* ===== SHADOWS ===== */
    --shadow-peacock: 0 8px 20px rgba(26, 79, 122, 0.25);
    --shadow-gold: 0 6px 18px rgba(198, 161, 93, 0.3);
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);

    /* ===== SPACING ===== */
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* ===== RADIUS ===== */
    --radius-md: 0.625rem;
    --radius-lg: 0.875rem;
    --radius-xl: 1.25rem;
}

/* ===== GLOBAL RESETS ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

/* ===== CONTAINER ===== */
.container-mayil {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== DEVOTIONAL TEXT BANNER ===== */
.devotional-banner {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-gold);
    border: 2px solid #B8923F;
    margin: 2rem auto;
    max-width: 900px;
}

.devotional-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--peacock-blue);
    text-align: center;
    margin: 1.5rem 0;
    font-style: italic;
}

/* ===== BUTTONS ===== */
.btn-mayil {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: var(--gradient-peacock-button);
    color: white;
    font-weight: 700;
    font-size: 1.0625rem;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: var(--shadow-peacock);
}

.btn-mayil:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(26, 79, 122, 0.35);
}

.btn-mayil-gold {
    background: var(--gradient-gold);
    color: var(--text-dark);
    box-shadow: var(--shadow-gold);
}

.btn-mayil-gold:hover {
    box-shadow: 0 8px 24px rgba(198, 161, 93, 0.4);
}

.btn-mayil-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1875rem;
}

/* ===== CARDS ===== */
.card-mayil {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 2px solid rgba(26, 79, 122, 0.1);
}

.card-mayil:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-peacock);
    border-color: var(--teal);
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-peacock);
    border-color: var(--turquoise);
}

.service-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    background: var(--gradient-peacock-button);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(26, 79, 122, 0.2));
}

.service-card h3 {
    font-size: 1.375rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--peacock-blue);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== FEATHER-STYLE ICONS (Light Line Icons) ===== */
.feather-icon {
    width: 20px;
    height: 20px;
    stroke: var(--teal);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-peacock {
    color: var(--peacock-blue);
}

.icon-teal {
    color: var(--teal);
}

.icon-gold {
    color: var(--gold);
}

/* ===== FORM INPUTS ===== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--teal);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    background: white;
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--peacock-blue);
    background: rgba(57, 169, 219, 0.05);
    box-shadow: 0 0 0 3px rgba(26, 79, 122, 0.1);
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* ===== DIVIDER ===== */
.divider-mayil {
    width: 100px;
    height: 5px;
    background: var(--gradient-peacock-button);
    margin: 1.5rem auto;
    border-radius: 9999px;
    box-shadow: var(--shadow-peacock);
}

/* ===== BADGE ===== */
.badge-mayil {
    display: inline-block;
    padding: 0.5rem 1.125rem;
    background: var(--gradient-peacock-button);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 9999px;
    box-shadow: var(--shadow-peacock);
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ===== SECTIONS ===== */
.section {
    padding: 4rem 0;
}

.section-cream {
    background: var(--bg-cream);
}

.section-white {
    background: white;
}

/* ===== FEATURE ITEMS ===== */
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-item svg {
    flex-shrink: 0;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--gold);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 2.5rem 0;
    }

    .devotional-banner {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

/* ===== TEXT UTILITIES ===== */
.text-center {
    text-align: center;
}

.text-peacock {
    color: var(--peacock-blue);
}

.text-teal {
    color: var(--teal);
}

.text-gold {
    color: var(--gold);
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

/* ===== PEACOCK SHIMMER ANIMATION ===== */
@keyframes peacock-shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.shimmer {
    background: linear-gradient(90deg,
            var(--peacock-blue) 0%,
            var(--teal) 25%,
            var(--turquoise) 50%,
            var(--teal) 75%,
            var(--peacock-blue) 100%);
    background-size: 200% 100%;
    animation: peacock-shimmer 3s ease-in-out infinite;
}

/* ===== OVERRIDE ANY OLD GREEN STYLES ===== */
.btn-success,
.bg-success,
.text-success {
    background: var(--gradient-peacock-button) !important;
    color: white !important;
}

.border-success {
    border-color: var(--teal) !important;
}

/* ===== PEACOCK GRADIENT BACKGROUND (MISSING CLASS) ===== */
.peacock-gradient {
    background: linear-gradient(135deg, var(--peacock-blue) 0%, var(--teal) 50%, var(--deep-indigo) 100%);
}

/* ===== FIX ICON VISIBILITY ON DESKTOP ===== */
/* Ensure icons are always visible regardless of screen size */
.card-mayil i,
.service-card i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Desktop-specific icon fix */
@media (min-width: 769px) {

    .card-mayil i.fas,
    .card-mayil i.fa {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10;
    }
}