:root {
    /* Brand Colors - Premium & Vibrant */
    --primary-color: #fca311;
    /* Richer Amber/Orange */
    --primary-dark: #e65100;
    /* Deep Orange for gradients/hover */
    --secondary-color: #14213d;
    /* Deep Navy Blue (Professional/Trust) */
    --accent-color: #e5e5e5;
    /* Platinum/Silver */

    --text-dark: #111827;
    --text-light: #F3F4F6;
    --white: #FFFFFF;

    /* Backgrounds */
    --bg-light: #F9FAFB;
    --bg-dark: #0f172a;
    --gray-100: #F3F4F6;
    /* Kept for compatibility */
    --gray-200: #E5E7EB;
    /* Kept for compatibility */

    /* Typography */
    /* Using Outfit for headings gives a modern, geometric feel; Inter for body is clean */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 5rem;
    /* Increased for more breathing room */
    --spacing-xl: 8rem;

    /* Shadows - Soft & Premium */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(252, 163, 17, 0.25);
    /* Brand glow */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--gray-100);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 99px;
    /* Pill shape */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    /* Stronger shadow */
    border: 2px solid rgba(255, 255, 255, 0.2);
    /* Subtle contrast border */
    position: relative;
    z-index: 20;
    /* Ensure clickable */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.6);
    filter: brightness(1.2);
    border-color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--white);
    /* To match sizing if needed, or just style */
}

.btn-secondary:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.text-center {
    text-align: center;
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

/* Cool Glowing Button */
.btn-glow {
    background: linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%);
    background-size: 200% auto;
    border-radius: 50px;
    border: none !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(240, 152, 25, 0.3) !important;
    transition: 0.5s all;
    animation: pulse-orange 2s infinite;
}

.btn-glow:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(240, 152, 25, 0.6) !important;
    transform: translateY(-5px) scale(1.05);
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 152, 25, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(240, 152, 25, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(240, 152, 25, 0);
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) rotate(5deg);
    color: #FFF;
}

.whatsapp-icon {
    font-size: 32px;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Glowing Stars for Testimonials */
.star-glow {
    color: #ffca28;
    text-shadow: 0 0 10px rgba(255, 202, 40, 0.8), 0 0 20px rgba(255, 202, 40, 0.4);
    animation: star-pulse 2s infinite ease-in-out;
}

@keyframes star-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 202, 40, 0.8), 0 0 20px rgba(255, 202, 40, 0.4);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
        text-shadow: 0 0 15px rgba(255, 202, 40, 1), 0 0 30px rgba(255, 202, 40, 0.6);
    }
}