/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a2a44;
    --primary-dark: #061a2c;
    --secondary: #f5c518;
    --secondary-light: #fde98a;
    --accent: #e8f0fe;
    --text: #1a1a2e;
    --light: #f8f9fa;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 16px;
    --radius-lg: 24px;
    --gradient: linear-gradient(135deg, #0a2a44 0%, #1a4a6e 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    color: var(--text);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    animation: waPulse 2s infinite;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: #25D366;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    white-space: nowrap;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.85);
    }
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 100px;
    right: 28px;
    background: var(--primary);
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    z-index: 9998;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--secondary);
    max-width: 300px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    border-left-color: #28a745;
}

.toast.error {
    border-left-color: #dc3545;
}

/* ===== HEADER ===== */
header {
    background: var(--primary);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: background 0.3s;
}

header.scrolled {
    background: rgba(10, 42, 68, 0.97);
    backdrop-filter: blur(10px);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo h1 {
    color: white;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo h1 span {
    color: var(--secondary);
}

.logo img {
    height: 46px;
    width: auto;
    border-radius: 8px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 6px;
}

nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.3s;
    padding: 7px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

nav a i {
    font-size: 0.85rem;
    transition: transform 0.3s;
}

nav a:hover i {
    transform: translateY(-2px);
}

nav a:hover,
nav a.active {
    color: var(--secondary);
    background: rgba(245, 197, 24, 0.1);
}

.hamburger {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.hamburger:hover {
    background: rgba(245, 197, 24, 0.2);
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    height: 88vh;
    min-height: 560px;
    max-height: 780px;
    overflow: hidden;
    background: var(--primary);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover !important;
    background-position: center !important;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 42, 68, 0.92) 0%, rgba(10, 42, 68, 0.55) 60%, rgba(10, 42, 68, 0.2) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 50px 70px;
    max-width: 680px;
}

.slide.active .slide-content {
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 197, 24, 0.18);
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 40px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(245, 197, 24, 0.3);
}

.slide-content h2 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 14px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.slide-content h2 span {
    color: var(--secondary);
    display: inline-block;
    position: relative;
}

.slide-content p {
    font-size: 1.25rem;
    opacity: 0.88;
    margin-bottom: 22px;
    font-weight: 300;
    letter-spacing: 1.5px;
}

.slide-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 500;
    padding: 7px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge:first-child {
    background: var(--secondary);
    color: var(--primary);
    border: none;
    font-weight: 700;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    padding: 14px 36px;
}

/* ===== SLIDER BUTTONS ===== */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 24px;
}

.slider-btn.next {
    right: 24px;
}

.slider-dots {
    position: absolute;
    bottom: 32px;
    left: 70px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--secondary);
    width: 28px;
    border-radius: 8px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--secondary);
    color: var(--primary);
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::after {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 197, 24, 0.4);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--gradient);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 20px;
}

.stat-item i {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 10px;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

.stat-item:nth-child(2) i {
    animation-delay: 0.5s;
}

.stat-item:nth-child(3) i {
    animation-delay: 1s;
}

.stat-item:nth-child(4) i {
    animation-delay: 1.5s;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 500;
}

/* ===== BRANDS BAR ===== */
.brands-bar {
    background: white;
    padding: 24px 0;
    border-bottom: 2px solid #eee;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.brands-bar h3 {
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.brands-bar h3 i {
    color: var(--secondary);
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
}

.brand-item {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    padding: 7px 20px;
    background: var(--accent);
    border-radius: 30px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: default;
}

.brand-item img {
    height: 22px;
    width: auto;
}

.brand-item i {
    color: var(--primary);
}

.brand-item:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(245, 197, 24, 0.3);
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--secondary);
    background: rgba(245, 197, 24, 0.12);
    padding: 4px 18px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 10px;
}

.section-title span {
    color: var(--secondary);
    position: relative;
}

.section-sub {
    color: #666;
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
}

/* ===== ICON ANIMATIONS ===== */
@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes iconSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes iconShake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-12deg);
    }

    40% {
        transform: rotate(12deg);
    }

    60% {
        transform: rotate(-6deg);
    }

    80% {
        transform: rotate(6deg);
    }
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.85;
    }
}

.icon-animate-bounce {
    animation: iconBounce 2s ease-in-out infinite;
}

.icon-animate-spin {
    animation: iconSpin 4s linear infinite;
}

.icon-animate-shake {
    animation: iconShake 2s ease-in-out infinite;
}

.icon-animate-pulse {
    animation: iconPulse 1.5s ease-in-out infinite;
}

/* ===== CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.card {
    background: white;
    padding: 34px 26px 26px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: 0.4s;
    border: 1px solid #eee;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.card-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, #d4e4ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.4s;
}

.card:hover .card-icon-wrap {
    background: linear-gradient(135deg, var(--primary) 0%, #1a4a6e 100%);
}

.card-icon-wrap i {
    font-size: 2.2rem;
    color: var(--primary);
    transition: color 0.4s;
}

.card:hover .card-icon-wrap i {
    color: var(--secondary);
}

.card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 700;
}

.card p {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.card-footer {
    margin-top: auto;
}

.card-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.card-tag-gold {
    background: var(--secondary);
    color: var(--primary);
}

/* Staggered fade-in animation */
.card:nth-child(1) {
    animation: fadeUp 0.6s ease 0.1s forwards;
}

.card:nth-child(2) {
    animation: fadeUp 0.6s ease 0.2s forwards;
}

.card:nth-child(3) {
    animation: fadeUp 0.6s ease 0.3s forwards;
}

.card:nth-child(4) {
    animation: fadeUp 0.6s ease 0.4s forwards;
}

.card:nth-child(5) {
    animation: fadeUp 0.6s ease 0.5s forwards;
}

.card:nth-child(6) {
    animation: fadeUp 0.6s ease 0.6s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CLAIMS ===== */
.claims-section {
    background: linear-gradient(135deg, #f0f6ff 0%, var(--accent) 100%);
}

.claim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.claim-card {
    background: white;
    padding: 32px 22px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.35s;
    border-top: 4px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.claim-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(245, 197, 24, 0.06), transparent);
    transition: height 0.4s;
}

.claim-card:hover::after {
    height: 100%;
}

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

.claim-icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: 0.3s;
}

.claim-card:hover .claim-icon-wrap {
    transform: rotate(10deg) scale(1.1);
}

.claim-icon-wrap i {
    font-size: 1.9rem;
    color: var(--secondary);
}

.claim-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.claim-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 3px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
}

.tag-priority {
    background: var(--primary);
    color: var(--secondary);
}

.insurance-partners {
    background: white;
    padding: 34px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.insurance-partners h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.insurance-partners h4 i {
    color: var(--secondary);
}

.partner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.partner-grid span {
    background: var(--accent);
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: 0.3s;
    cursor: default;
    color: var(--primary);
}

.partner-grid span:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.9rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.3;
}

.about-text p {
    color: #555;
    margin-bottom: 14px;
    line-height: 1.85;
}

.about-features {
    list-style: none;
    margin: 18px 0;
}

.about-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
    font-weight: 500;
}

.about-features li i {
    color: var(--secondary);
    font-size: 1.15rem;
    background: rgba(245, 197, 24, 0.15);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-info {
    background: linear-gradient(135deg, var(--accent), #d8ebff);
    padding: 22px;
    border-radius: var(--radius);
    margin-top: 18px;
    border-left: 4px solid var(--secondary);
}

.about-info p {
    margin: 6px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary);
}

.about-info i {
    color: var(--secondary);
    width: 20px;
    text-align: center;
}

.about-image {
    background: var(--gradient);
    height: 420px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 42, 68, 0.5), transparent);
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-placeholder {
    position: absolute;
    z-index: 1;
}

.about-placeholder i {
    font-size: 4.5rem;
    color: var(--secondary);
    margin-bottom: 16px;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

.about-placeholder p {
    font-size: 1.4rem;
    font-weight: 700;
}

/* ===== FEEDBACK / REVIEWS ===== */
.feedback-section {
    background: linear-gradient(135deg, #fff9e6 0%, #fff 60%, #f0f8ff 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.review-card {
    background: white;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary);
    transition: 0.3s;
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
}

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

.review-stars {
    margin-bottom: 14px;
    display: flex;
    gap: 4px;
}

.review-stars i {
    color: var(--secondary);
    font-size: 1.3rem;
    text-shadow: 0 2px 8px rgba(245, 197, 24, 0.6);
    animation: starPop 0.4s ease both;
}

.review-stars i:nth-child(1) {
    animation-delay: 0.05s;
}

.review-stars i:nth-child(2) {
    animation-delay: 0.10s;
}

.review-stars i:nth-child(3) {
    animation-delay: 0.15s;
}

.review-stars i:nth-child(4) {
    animation-delay: 0.20s;
}

.review-stars i:nth-child(5) {
    animation-delay: 0.25s;
}

@keyframes starPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.review-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 18px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary);
}

.review-author span {
    font-size: 0.8rem;
    color: #888;
}

/* ===== WRITE REVIEW FORM ===== */
.write-review-wrap {
    background: white;
    border-radius: var(--radius-lg);
    padding: 38px 40px;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
    max-width: 700px;
    margin: 0 auto;
}

.write-review-wrap h3 {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.write-review-wrap h3 i {
    color: var(--secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    color: var(--text);
    transition: 0.3s;
    outline: none;
    background: #fafafa;
}

.review-form input:focus,
.review-form textarea:focus {
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.12);
}

.review-form textarea {
    resize: vertical;
    margin-bottom: 16px;
}

.star-rating-input {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--primary);
}

.stars-input i {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s, transform 0.2s;
}

.stars-input i:hover,
.stars-input i.active {
    color: var(--secondary);
    transform: scale(1.25);
    text-shadow: 0 3px 12px rgba(245, 197, 24, 0.7);
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.04);
    pointer-events: none;
}

.contact-section .section-title {
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(245, 197, 24, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}

.contact-item:hover .contact-icon {
    background: var(--secondary);
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--secondary);
    transition: color 0.3s;
}

.contact-item:hover .contact-icon i {
    color: var(--primary);
}

.contact-item h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
    color: white;
}

.contact-item p {
    opacity: 0.8;
    font-size: 0.92rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transition: 0.3s;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
}

.contact-form select option {
    color: var(--primary);
    background: white;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
footer {
    background: #061a2c;
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 36px;
}

.footer-brand h2 {
    font-size: 2rem;
    color: white;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-brand h2 span {
    color: var(--secondary);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand .gst {
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 700;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    padding: 5px 0;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--secondary);
    transition: transform 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--secondary);
    width: 18px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.87rem;
    opacity: 0.6;
    gap: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .slide-content h2 {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background: var(--primary-dark);
        padding: 16px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        gap: 4px;
        border-top: 2px solid var(--secondary);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    nav ul.open {
        display: flex;
    }

    nav a {
        padding: 10px 14px;
    }

    .hero {
        height: 72vh;
        min-height: 440px;
    }

    .slide-content {
        padding: 30px 28px;
        text-align: center;
    }

    .slide-content h2 {
        font-size: 2.3rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-badges {
        justify-content: center;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .slider-dots {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 60px 0;
    }

    .card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .claim-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .write-review-wrap {
        padding: 28px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    .claim-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

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

    .slide-content h2 {
        font-size: 1.75rem;
    }

    .slide-content {
        padding: 20px;
    }

    .slider-btn {
        display: none;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.9rem;
    }
}

/* ===== FLOATING CALL BUTTON (LEFT SIDE) ===== */
.call-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 62px;
    height: 62px;
    background: #0077b5;
    /* Professional blue color for call */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 119, 181, 0.5);
    animation: callPulse 2s infinite;
    text-decoration: none;
    transition: transform 0.3s;
}

.call-float:hover {
    transform: scale(1.1);
}

.call-tooltip {
    position: absolute;
    left: 72px;
    background: #0077b5;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    white-space: nowrap;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.call-float:hover .call-tooltip {
    opacity: 1;
}

@keyframes callPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(0, 119, 181, 0.5);
    }

    50% {
        box-shadow: 0 4px 40px rgba(0, 119, 181, 0.85);
    }
}

/* ===== SMALL SCREEN ADJUSTMENT ===== */
@media (max-width: 480px) {
    .call-float {
        bottom: 18px;
        left: 18px;
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }

    .call-tooltip {
        display: none;
        /* Hide tooltip on small screens to avoid overlap */
    }
}