/* ========================================
    Trinity Credit Solutions - Custom Styles
    ======================================== */

/* ========================================
    1. ROOT VARIABLES & RESET
    ======================================== */
:root {
    --yellow-primary: #facc15;
    --yellow-dark: #eab308;
    --yellow-light: #fef3c7;
    --blue-accent: #2563eb;
    --neutral-900: #171717;
    --neutral-800: #262626;
    --neutral-700: #404040;
    --neutral-600: #525252;
    --neutral-500: #737373;
    --neutral-400: #a3a3a3;
    --neutral-300: #d4d4d4;
    --neutral-200: #e5e5e5;
    --neutral-100: #f5f5f5;
    --neutral-50: #fafafa;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --primary-yellow: #FACC15;
    --primary-yellow-dark: #EAB308;
    --text-dark: #000000;
    --text-gray: #666666;
    --text-light: #333333;
    --bg-white: #FFFFFF;
    --bg-light: #FAFAFA;
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 24px;
    --border-radius-full: 50px;
    --transition-base: all 0.3s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --deep-yellow: #EAB308;
    --gradient-primary: linear-gradient(135deg, #FACC15, #EAB308);
    --gradient-secondary: linear-gradient(135deg, #FEF3C7, #FDE68A);

    --gradient: linear-gradient(135deg, #FACC15, #EAB308);
    --text-color: #000000;
    --text-muted: #4B5563;
    --light-bg: #FFFBEB;
    --border-color: #E5E7EB;
    --input-bg: #FAFAFA;
    --transition-slow: all 0.6s ease;

    --gray-light: #F3F4F6;
    --gray-dark: #6B7280;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #6c757d;
    --gray-900: #111827;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-700);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ========================================
    2. UTILITY CLASSES
    ======================================== */
.section {
    padding: 54px 0;
}

.main-heading {
    font-size: 34px;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.2;
}

.text-yellow {
    color: var(--yellow-primary);
}

.text-blue {
    color: var(--blue-accent);
}

.section-badge {
    display: inline-block;
    background-color: var(--yellow-light);
    color: var(--yellow-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-description {
    font-size: 18px;
    color: var(--neutral-600);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Background Gradients */
.bg-gradient-light {
    background: linear-gradient(to bottom, var(--neutral-50), var(--white));
}

.bg-gradient-yellow {
    background: linear-gradient(to bottom right, var(--yellow-light), var(--white), var(--yellow-light));
}

/* ========================================
    3. NAVIGATION
    ======================================== */
    .navbar {
    padding: 0;
    transition: all 0.3s ease;
}
.navbar img{
    width: 240px;
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
}
.navbar-brand .text-yellow {
    color: var(--yellow-primary) !important;
}
.nav-link {
    font-weight: 600;
    font-size: 16px;
    color: var(--neutral-700) !important;
    padding: 24px 18px !important;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--yellow-primary) !important;
}
.dropdown-menu {
    padding: 0px !important;
    border-radius: 0px !important;
}
.dropdown-menu .dropdown-item {
    padding: 10px 20px !important;
}
.dropdown-menu .dropdown-item {
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}
.dropdown-menu li .dropdown-item:hover{
    background-color: #fef5d0;
    color: #db5929 !important;
}
@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}
.btn-yellow {
    background: linear-gradient(to right, var(--yellow-primary), var(--yellow-dark));
    color: var(--neutral-900) !important;
    font-weight: 700;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}
.btn-yellow:hover {
    background: linear-gradient(to right, var(--yellow-dark), #ca8a04);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 16px;
    }

    .nav-link {
        padding: 12px 0 !important;
    }

    .btn-yellow {
        margin-top: 12px;
        width: 100%;
    }
}

/* ========================================
    4. HERO SECTION
    ======================================== */
.hero-section {
    display: flex;
    align-items: center;
    padding-top: 44px;
    padding-bottom: 54px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--yellow-light), var(--white), var(--yellow-light));
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-gradient::before,
.hero-bg-gradient::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: blob 7s ease-in-out infinite;
}

.hero-bg-gradient::before {
    background-color: var(--yellow-primary);
    top: -100px;
    right: -100px;
}

.hero-bg-gradient::after {
    background-color: var(--yellow-dark);
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-section .container,
.hero-section .row {
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
}

.badge-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--yellow-light);
    color: #854d0e;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.badge-location svg {
    flex-shrink: 0;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--neutral-900);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--neutral-600);
    line-height: 1.7;
}

/* Stats */
.stats-row {
    border-top: 1px solid var(--neutral-200);
    border-bottom: 1px solid var(--neutral-200);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--yellow-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--neutral-600);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-600);
    font-size: 14px;
}

.trust-badge svg {
    color: var(--yellow-primary);
    flex-shrink: 0;
}

/* Hero Form */
.hero-form-card {
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--yellow-primary);
    padding: 32px;
    box-shadow: var(--shadow-2xl);
    position: relative;
    z-index: 1;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral-900);
}

.form-control,
.form-select {
    border: 2px solid var(--neutral-300);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--yellow-primary);
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.1);
    outline: none;
}

.btn-hero {
    background: linear-gradient(to right, var(--yellow-primary), var(--yellow-dark));
    color: var(--neutral-900);
    font-weight: 700;
    padding: 16px 32px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-hero:hover {
    background: linear-gradient(to right, var(--yellow-dark), #ca8a04);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--neutral-900);
}

.form-privacy-text {
    font-size: 12px;
    color: var(--neutral-500);
    margin-top: 12px;
}

/* Responsive Hero */
@media (min-width: 576px) {
    .hero-title {
        font-size: 48px;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 120px;
        min-height: auto;
    }
}

/* ========================================
    5. SERVICE CARDS
    ======================================== */
.service-card {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--yellow-light), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--yellow-primary);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--neutral-900);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    color: var(--neutral-600);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    font-size: 14px;
    color: var(--neutral-600);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yellow-primary);
    font-weight: 700;
}

/* ========================================
    6. STEP CARDS (HOW IT WORKS)
    ======================================== */
.step-card {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--yellow-light), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--yellow-primary);
}

.step-card > * {
    position: relative;
    z-index: 1;
}

.step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--yellow-primary);
    color: var(--neutral-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yellow-light), var(--white));
    border: 2px solid var(--yellow-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--yellow-dark);
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* ========================================
    7. TESTIMONIALS
    ======================================== */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--yellow-light), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.testimonial-location {
    font-size: 12px;
    color: var(--neutral-600);
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-stars {
    color: var(--yellow-primary);
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 15px;
    color: var(--neutral-700);
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-score {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid var(--neutral-200);
}

.score-badge {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
}

.score-before {
    background-color: #fee2e2;
    color: #991b1b;
}

.score-after {
    background-color: #dcfce7;
    color: #166534;
}

.score-arrow {
    color: var(--yellow-primary);
    font-weight: 700;
}

.score-timeframe {
    font-size: 12px;
    color: var(--neutral-600);
    font-style: italic;
}

/* ========================================
    8. CONTACT SECTION
    ======================================== */
.contact-form-card {
    background: var(--white);
    border: 2px solid var(--yellow-primary);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-2xl);
}

.contact-info-card {
    background: linear-gradient(to bottom right, var(--yellow-primary), var(--yellow-dark));
    border-radius: 16px;
    padding: 32px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.contact-info-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}

.contact-link {
    color: var(--yellow-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.contact-link:hover {
    color: var(--white);
}

.contact-text {
    color: var(--yellow-light);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* ========================================
    9. FOOTER
    ======================================== */
.footer {
    background-color: var(--neutral-900);
    color: var(--neutral-400);
    padding: 60px 0 30px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--neutral-800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-400);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--yellow-primary);
    color: var(--neutral-900);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--neutral-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow-primary);
}

.footer-divider {
    border-color: var(--neutral-800);
    margin: 40px 0 30px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--neutral-500);
    margin: 0;
}

.footer-legal-link {
    color: var(--neutral-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--yellow-primary);
}

/* ========================================
    10. FLOATING BUTTONS
    ======================================== */
/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: var(--white);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-dark));
    color: var(--neutral-900);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
    11. ANIMATIONS
    ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
    12. RESPONSIVE UTILITIES
    ======================================== */
@media (max-width: 767px) {
    .main-heading {
        font-size: 28px;
    }

    .section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .trust-badges {
        gap: 16px;
    }

    .trust-badge {
        font-size: 13px;
    }

    .service-card,
    .step-card,
    .testimonial-card {
        padding: 24px;
    }

    .service-title,
    .step-title {
        font-size: 20px;
    }

    .form-title {
        font-size: 20px;
    }

    .whatsapp-btn {
        width: 56px;
        height: 56px;
        bottom: 70px;
        right: 20px;
    }

    .scroll-to-top {
        width: 46px;
        height: 46px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 32px;
    }

    .main-heading {
        font-size: 26px;
    }

    .section-description {
        font-size: 16px;
    }
}

section {
    scroll-margin-top: 80px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--yellow-primary);
    outline-offset: 2px;
}

/* Notification Animations */
@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 20px;
    font-weight: bold;
}

.notification-message {
    font-size: 14px;
    font-weight: 500;
}


.hero-banner {
    position: relative;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-dark));
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-30px) translateX(20px); }
}

.hero-banner .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb-nav {
    background: rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: var(--border-radius-full);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    list-style: none;
}

.breadcrumb-nav a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-base);
}

.breadcrumb-nav a:hover {
    opacity: 0.7;
}

.hero-cta {
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* ========================================
    BUTTONS
======================================== */
.btn-cta {
    background: var(--text-dark);
    color: var(--primary-yellow);
    padding: 16px 40px;
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    display: inline-block;
    text-decoration: none;
}

.btn-cta:hover {
    background: var(--text-dark);
    color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(250, 204, 21, 0.4);
}

.btn-call {
    background: var(--text-dark);
    color: var(--primary-yellow);
    padding: 16px 40px;
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--text-dark);
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-call:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.phone-icon {
    font-size: 1.2rem;
}

/* ========================================
    PROGRESS INDICATOR
======================================== */
.progress-section {
    padding: 60px 0;
}

.progress-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.progress-step {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    transition: var(--transition-base);
    cursor: pointer;
}

.progress-step.active {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-dark));
    color: var(--text-dark);
    transform: scale(1.2);
    box-shadow: var(--shadow-md);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(250, 204, 21, 0); }
}

.progress-step:hover {
    transform: scale(1.15);
}

.progress-connector {
    width: 40px;
    height: 3px;
    background: rgba(250, 204, 21, 0.3);
    border-radius: 2px;
}

/* ========================================
    SECTION IMAGES
======================================== */
.section-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
}

/* ========================================
    PROCESS CARDS
======================================== */
.process-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(250, 204, 21, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-base);
    font-size: 2.5rem;
}

.process-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.process-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 15px;
}

.process-card a {
    color: var(--primary-yellow-dark);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition-base);
}

.process-card a:hover {
    color: var(--primary-yellow);
}

/* ========================================
    MIDDLE BANNER
======================================== */
.middle-banner {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-dark));
    padding: 60px 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin: 60px 0;
}

.middle-banner h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
}

/* ========================================
    ANALYSIS SECTION
======================================== */
.analysis-card {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.05), rgba(234, 179, 8, 0.05));
    border-radius: var(--border-radius-lg);
    padding: 50px;
    border: 2px solid rgba(250, 204, 21, 0.2);
    transition: var(--transition-smooth);
}

.analysis-card:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 12px 40px rgba(250, 204, 21, 0.2);
}

.analysis-card a {
    color: var(--primary-yellow-dark);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition-base);
}

.analysis-card a:hover {
    color: var(--primary-yellow);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    transition: var(--transition-base);
}

.feature-list li:hover {
    padding-left: 10px;
    color: var(--primary-yellow-dark);
}

.feature-list li::before {
    content: '✓';
    font-weight: 900;
    color: var(--primary-yellow);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* ========================================
    CONSULTATION SECTION
======================================== */
.consultation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.consultation-item {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.consultation-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow);
}

.consultation-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.consultation-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.consultation-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
    CTA SECTION
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-dark));
    border: 2px solid var(--primary-yellow-dark);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* ========================================
    REVEAL ANIMATION
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
    STICKY MOBILE CTA
======================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-dark));
    padding: 15px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.sticky-cta.visible {
    transform: translateY(0);
}

/* ========================================
    RESPONSIVE DESIGN
======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    .section-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 80px 0 60px;
        min-height: 350px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .process-card {
        padding: 30px;
    }
    .analysis-card {
        padding: 30px;
    }
    .progress-indicator {
        gap: 10px;
    }
    .progress-step {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .progress-connector {
        width: 20px;
    }
    .section-image {
        height: 250px;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .middle-banner h3 {
        font-size: 1.8rem;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
    .cta-section p {
        font-size: 1.1rem;
    }
    .sticky-cta {
        display: block;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 2rem;
    }
    .btn-cta {
        padding: 14px 30px;
        font-size: 1rem;
    }
    .process-card h3 {
        font-size: 1.3rem;
    }
    .section-image {
        height: 200px;
    }
}


/* Who we are */
/* ===== FEATURE CARDS ===== */
.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(250, 204, 21, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(250, 204, 21, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--text-dark);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ===== IMAGE CONTAINER ===== */
.image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 400px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--gradient-primary);
    padding: 60px 0;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-gray);
}

/* ===== TIMELINE ===== */
.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    box-shadow: 0 5px 20px rgba(250, 204, 21, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(250, 204, 21, 0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(250, 204, 21, 0.5);
    }
}

.timeline-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.15);
}

/* ===== CTA BUTTON ===== */
.cta-button {
    background: var(--gradient-primary);
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(250, 204, 21, 0.4);
    color: var(--text-dark);
}

.cta-button-dark {
    background: var(--text-dark);
    color: #ffffff;
}

.cta-button-dark:hover {
    color: #ffffff;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .image-container {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}


/* Contact us page */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(180deg);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* ============================================
    DECORATIVE ELEMENTS
    ============================================ */

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.08;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.shape-1 {
    width: 350px;
    height: 350px;
    top: 8%;
    right: -120px;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: -80px;
    animation-delay: 3s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: 5%;
    animation-delay: 5s;
}

/* ============================================
    TYPOGRAPHY & GRADIENT TEXT
    ============================================ */

.cp-gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: var(--transition-base);
}

.cp-gradient-text:hover {
    transform: scale(1.05);
    filter: brightness(1.15);
}

.subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
    HERO SECTION
    ============================================ */

.hero-section {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-section .main-heading {
    font-size: clamp(28px, 5vw, 44px);
    margin-bottom: 24px;
}

.hero-section .subtitle {
    font-size: clamp(16px, 2vw, 18px);
    max-width: 720px;
    margin: 0 auto 40px;
}

/* ============================================
    CONTACT FORM CARD
    ============================================ */

.contact-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(250, 204, 21, 0.2);
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
    height: 100%;
}

.contact-form-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.section-header {
    margin-bottom: 32px;
}

.section-header h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 0;
}

/* Form Elements */
.form-label {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-color);
    display: block;
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 16px;
    transition: var(--transition-base);
    background: var(--input-bg);
    font-family: 'Mulish', sans-serif;
    font-weight: 500;
    color: var(--text-color);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.12);
    background: var(--white);
    outline: none;
}

.form-control::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

/* Submit Button */
.btn-submit {
    background: var(--gradient);
    color: var(--text-color);
    border: none;
    border-radius: 12px;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-submit:hover::before {
    width: 350px;
    height: 350px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(234, 179, 8, 0.45);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* ============================================
    INFO CARDS
    ============================================ */

.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-yellow);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(250, 204, 21, 0.15),
        transparent
    );
    transition: left 0.6s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
    animation: pulse 3s infinite;
}

.icon-wrapper i {
    font-size: 28px;
    color: var(--text-color);
}

.info-card h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--text-color);
}

.info-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
}

.info-card a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    position: relative;
}

.info-card a:hover {
    color: var(--deep-yellow);
}

.info-card a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.info-card a:hover::after {
    width: 100%;
}

/* ============================================
    TIMINGS CARD
    ============================================ */

.timings-card {
    background: var(--gradient);
    border-radius: 20px;
    padding: 38px;
    box-shadow: var(--shadow-lg);
    color: var(--text-color);
    margin-bottom: 0;
}

.timings-card h4 {
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timings-card h4 i {
    font-size: 26px;
}

.timings-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timings-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
}

.timings-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timings-list li span:first-child {
    font-weight: 700;
}

.timings-list li span:last-child {
    font-weight: 600;
}

/* ============================================
    MAP SECTION
    ============================================ */

.map-section {
    padding: 80px 0;
}

.map-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-section .main-heading {
    font-size: 34px;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    padding: 6px;
    background: var(--gradient);
}

.map-container iframe {
    width: 100%;
    height: 480px;
    border: none;
    display: block;
    border-radius: 20px;
}

/* ============================================
    RESPONSIVE DESIGN
    ============================================ */

/* Tablet View */
@media (max-width: 991px) {
    .section {
        padding: 40px 0;
    }
    
    .main-heading {
        font-size: 30px;
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .contact-form-card {
        padding: 40px 30px;
        margin-bottom: 40px;
    }
    
    .section-header h3 {
        font-size: 28px;
    }
    
    .info-card {
        padding: 26px;
    }
    
    .timings-card {
        padding: 30px;
    }
    
    .map-container iframe {
        height: 400px;
    }
    
    .shape-3 {
        display: none;
    }
}

/* Mobile View */
@media (max-width: 767px) {
    .section {
        padding: 36px 0;
    }
    
    .main-heading {
        font-size: 26px;
    }
    
    .hero-section {
        padding: 50px 0 36px;
    }
    
    .hero-section .main-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .hero-section .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact-form-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .section-header h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .form-control,
    .form-select {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .btn-submit {
        padding: 14px 36px;
        font-size: 16px;
    }
    
    .info-card {
        padding: 24px;
        border-radius: 16px;
        margin-bottom: 20px;
    }
    
    .info-card h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .info-card p {
        font-size: 14px;
    }
    
    .icon-wrapper {
        width: 54px;
        height: 54px;
        margin-bottom: 16px;
    }
    
    .icon-wrapper i {
        font-size: 24px;
    }
    
    .timings-card {
        padding: 26px;
        border-radius: 16px;
    }
    
    .timings-card h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .timings-list li {
        padding: 12px 0;
        font-size: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .map-section {
        padding: 60px 0;
    }
    
    .map-container {
        padding: 4px;
        border-radius: 20px;
    }
    
    .map-container iframe {
        height: 320px;
        border-radius: 16px;
    }
    
    .floating-shape {
        display: none;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .contact-form-card {
        padding: 24px 16px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .timings-card {
        padding: 22px;
    }
    
    .map-container iframe {
        height: 280px;
    }
}

/* ============================================
    UTILITY CLASSES
    ============================================ */

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.shadow-custom {
    box-shadow: var(--shadow-lg);
}


/* Services Page */
/* ===== Hero Section ===== */
.service-hero-section {
    background: linear-gradient(135deg, var(--primary-yellow), var(--deep-yellow));
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.service-hero-section::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='%23000000' 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;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-hero-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.service-hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    animation: fadeInUp 0.8s ease-out;
}

.service-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== First Paragraph Section ===== */
.first-para-section {
    text-align: center;
}

.first-para-text {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ===== Introduction Section ===== */
.intro-section {
    background: var(--white);
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-image {
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
}

/* ===== Stats Section ===== */
.service-stats-section {
    background: var(--light-bg);
}

.stats-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-yellow), var(--deep-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stats-label {
    color: var(--gray-dark);
    font-weight: 600;
    font-size: 1rem;
}

/* ===== Service Cards ===== */
.services-section {
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--deep-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(250, 204, 21, 0.25);
    border-color: var(--primary-yellow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--deep-yellow));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(250, 204, 21, 0.3);
    transition: transform 0.3s ease;
}

.service-card:hover .icon-badge {
    transform: rotate(5deg) scale(1.1);
}

.service-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-list .check-icon {
    color: #CA8A04;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ===== Benefits Section ===== */
.benefits-section {
    background: var(--light-bg);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.benefit-check {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-check-icon {
    color: #CA8A04;
    font-size: 1.25rem;
    font-weight: 700;
}

.benefit-text {
    font-size: 1.125rem;
    padding-top: 0.25rem;
    line-height: 1.375;
}

.benefits-image {
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
}

/* ===== Buttons ===== */
.btn-dark-custom {
    background: var(--text-color);
    color: var(--primary-yellow);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-dark-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
    color: var(--primary-yellow);
}

.btn-dark-custom svg {
    transition: transform 0.3s ease;
}

.btn-dark-custom:hover svg {
    transform: translateX(5px);
}

/* ===== Gradient Text (SEO Keywords) ===== */
.sr-gradient-text {
    background: linear-gradient(135deg, #FACC15, #EAB308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sr-gradient-text:hover {
    filter: brightness(1.2);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Styles ===== */
@media (max-width: 991px) {
    .service-hero-title {
        font-size: 2.5rem;
    }
    
    .first-para-text {
        font-size: 1.125rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .benefits-image,
    .intro-image {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 40px 0px;
    }
    
    .service-hero-title {
        font-size: 2rem;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
    }
    .stats-number {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .btn-dark-custom {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .service-hero-section {
        padding: 60px 15px;
    }
    
    .service-hero-title {
        font-size: 1.75rem;
    }
    
    .first-para-text {
        font-size: 1rem;
    }
}


/* Service Two */
.text-large {
    font-size: 18px;
    line-height: 1.8;
}
.text-base {
    font-size: 16px;
    line-height: 1.7;
}
.text-sm {
    font-size: 14px;
    line-height: 1.6;
}

/* ===========================
    GRADIENT TEXT
=========================== */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ===========================
    SECTION STYLES
=========================== */
.section {
    padding: 54px 0;
}

        .bg-light-gray {
            background: var(--gray-50);
        }
        
        /* ===========================
           BADGE STYLES
        =========================== */
        .stats-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(250, 204, 21, 0.1);
            border: 2px solid var(--primary-yellow);
            border-radius: 50px;
            font-weight: 700;
            color: var(--deep-yellow);
            margin-bottom: 24px;
            font-size: 14px;
        }
        
        .stats-badge i {
            margin-right: 8px;
        }
        
        /* ===========================
           IMAGE STYLES
        =========================== */
        .image-container {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            transition: all 0.5s ease;
        }
        
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .image-container:hover {
            box-shadow: var(--shadow-xl);
        }
        
        .image-container:hover img {
            transform: scale(1.05);
        }
        
        /* ===========================
           CARD STYLES
        =========================== */
        .info-card {
            background: var(--gray-50);
            border-radius: 16px;
            padding: 24px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .info-card:hover {
            background: var(--gray-100);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }
        
        .info-card i {
            color: var(--deep-yellow);
            font-size: 28px;
            margin-bottom: 12px;
            display: block;
        }
        
        .info-card h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-color);
        }
        
        .info-card p {
            font-size: 14px;
            color: var(--gray-600);
            margin-bottom: 0;
            line-height: 1.6;
        }
        
        /* ===========================
           SERVICE CARD STYLES
        =========================== */
        .service-card {
            background: var(--white);
            border-radius: 24px;
            padding: 40px;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            height: 100%;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-yellow);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-number {
            font-size: 48px;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 16px;
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 32px;
            color: var(--white);
            transition: all 0.4s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .service-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-color);
        }
        
        .service-description {
            font-size: 16px;
            line-height: 1.7;
            color: var(--gray-600);
            margin-bottom: 0;
        }
        
        /* ===========================
           BUTTON STYLES
        =========================== */
        .cta-button {
            display: inline-block;
            padding: 16px 48px;
            background: var(--text-color);
            color: var(--primary-yellow);
            font-size: 18px;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-lg);
            border: none;
        }
        
        .cta-button:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: var(--shadow-xl);
            color: var(--primary-yellow);
        }
        
        .cta-button i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .cta-button:hover i {
            transform: translateX(4px);
        }
        
        /* ===========================
           ANIMATIONS
        =========================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ===========================
           RESPONSIVE STYLES
        =========================== */
        @media (min-width: 1200px) {
            .main-heading {
                font-size: 48px;
            }
            
            .section-subtitle {
                font-size: 28px;
            }
        }
        
        @media (max-width: 991px) {
            .main-heading {
                font-size: 32px;
            }
            
            .section-subtitle {
                font-size: 22px;
            }
            
            .text-large {
                font-size: 16px;
            }
            
            .service-card {
                padding: 32px;
                margin-bottom: 24px;
            }
        }
        
        @media (max-width: 767px) {
            .section {
                padding: 40px 0;
            }
            
            .main-heading {
                font-size: 28px;
            }
            
            .section-subtitle {
                font-size: 20px;
            }
            
            .text-large {
                font-size: 16px;
            }
            
            .service-card {
                padding: 28px;
            }
            
            .cta-button {
                padding: 14px 36px;
                font-size: 16px;
            }
        }
        
        @media (max-width: 575px) {
            .main-heading {
                font-size: 24px;
            }
            
            .section-subtitle {
                font-size: 18px;
            }
            
            .info-card {
                padding: 20px;
            }
            
            .service-card {
                padding: 24px;
            }
        }
        
        /* ===========================
           UTILITY CLASSES
        =========================== */
        .mb-32 {
            margin-bottom: 32px;
        }
        
        .mb-48 {
            margin-bottom: 48px;
        }
        
        .mb-64 {
            margin-bottom: 64px;
        }
