/* 100 Plus Academy - High Performance Landing Page Styles */
/* Optimized for speed with minified production version */

/* ===== CSS Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #fff
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button {
    cursor: pointer;
    font-family: inherit
}

ul {
    list-style: none
}

/* ===== CSS Variables ===== */
:root {
    --red: #dc2626;
    --red-dark: #b91c1c;
    --red-light: #f87171;
    --blue: #3B82F6;
    --blue-dark: #2563EB;
    --green: #10B981;
    --green-dark: #059669;
    --yellow: #fbbf24;
    --yellow-dark: #f59e0b;
    --purple: #8B5CF6;
    --indigo: #6366F1;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --white: #fff;
    --black: #000;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    line-height: 1.2
}

.text-red {
    color: var(--red)
}

.text-blue {
    color: var(--blue)
}

.text-yellow {
    color: var(--yellow)
}

.text-green {
    color: var(--green)
}

.text-white {
    color: var(--white)
}

/* ===== Container ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem
}

@media(min-width:640px) {
    .container {
        padding: 0 1.5rem
    }
}

@media(min-width:1024px) {
    .container {
        padding: 0 2rem
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    transition: var(--transition);
    text-align: center
}

/* ===== Custom Video UI ===== */
.custom-video-wrapper {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 24px;
    border: 8px solid #1a1a1a;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: #000;
}

.custom-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: #1a1a1a;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.video-overlay-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(220, 38, 38, 0.9);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    animation: pulse-red 2s infinite;
}

.video-overlay-btn:hover {
    background: #dc2626;
    transform: translateX(-50%) scale(1.05);
}

@keyframes pulse-red {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3)
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4)
}

.btn-white {
    background: var(--white);
    color: var(--gray-800);
    box-shadow: var(--shadow)
}

.btn-white:hover {
    background: var(--gray-50);
    color: var(--gray-800);
    transform: scale(1.05)
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem
}

.btn-block {
    width: 100%
}

/* ===== Sticky Header ===== */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #FFF9EB;
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm)
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo img {
    height: 32px;
    width: auto
}

.header-cta .btn {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--gray-700)
}

@media(max-width:640px) {
    .header-cta {
        display: none
    }

    .mobile-menu-toggle {
        display: block
    }
}

/* ===== Sections ===== */
.section {
    padding: 3rem 0
}

@media(min-width:768px) {
    .section {
        padding: 4rem 0
    }
}

@media(min-width:1024px) {
    .section {
        padding: 5rem 0
    }
}

.section-white {
    background: var(--white)
}

.section-gray {
    background: var(--gray-50)
}

.section-red {
    background: linear-gradient(135deg, var(--red), var(--red-dark))
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem
}

.section-header-light {
    color: var(--white)
}

.section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem
}

@media(min-width:768px) {
    .section-title {
        font-size: 2.25rem
    }
}

.section-title-light {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem
}

@media(min-width:768px) {
    .section-title-light {
        font-size: 2.25rem
    }
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
    max-width: 48rem;
    margin: 0 auto
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    max-width: 48rem;
    margin: 0 auto
}

.section-divider {
    width: 8rem;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--red-dark));
    margin: 1.5rem auto 0;
    border-radius: 2px
}

.section-divider-left {
    margin-left: 0
}

/* ===== Hero Section ===== */
.hero-section {
    background: var(--white);
    padding: 2rem 0 3rem;
    position: relative;
    overflow: hidden
}

.hero-content {
    position: relative;
    z-index: 10
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800)
}

@media(min-width:768px) {
    .hero-title {
        font-size: 2.5rem
    }
}

@media(min-width:1024px) {
    .hero-title {
        font-size: 3rem
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    margin: 0 auto 2rem;
    max-width: 48rem
}

@media(min-width:768px) {
    .hero-subtitle {
        font-size: 1.25rem
    }
}

.hero-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem
}

@media(min-width:768px) {
    .hero-grid {
        grid-template-columns: auto 320px;
        justify-content: center;
        gap: 4rem;
        align-items: center
    }
}

.hero-details {
    text-align: left
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem
}

.detail-bullet {
    width: 8px;
    height: 8px;
    background: var(--red-light);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0
}

.detail-label {
    color: var(--red);
    font-weight: 600
}

.detail-value {
    color: var(--gray-700);
    margin-left: 0.5rem
}

.hero-video {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.hero-cta {
    text-align: center;
    margin-bottom: 2rem
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600)
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem
}

.trust-item i {
    font-size: 1rem
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite
}

.hero-decoration-1 {
    width: 80px;
    height: 80px;
    background: var(--red);
    top: 20%;
    left: 5%
}

.hero-decoration-2 {
    width: 60px;
    height: 60px;
    background: var(--blue);
    bottom: 20%;
    right: 5%;
    animation-delay: -3s
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

.animate-pulse {
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.8
    }
}

/* ===== Video Facade ===== */
.video-facade {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--gray-800);
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius)
}

.video-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: var(--red);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition)
}

.play-button i {
    color: var(--white);
    font-size: 1.25rem;
    margin-left: 3px
}

.video-facade:hover .play-button {
    background: var(--red-dark);
    transform: translate(-50%, -50%) scale(1.1)
}

.play-button-sm {
    width: 50px;
    height: 36px
}

.play-button-sm i {
    font-size: 1rem
}

.video-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition)
}

.video-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.4)
}

.video-card-content {
    padding: 1rem
}

.video-caption {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.75rem
}

/* ===== Batch Details ===== */
.batch-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 56rem;
    margin: 0 auto
}

.batch-card-header {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    padding: 1.5rem;
    text-align: center
}

.batch-card-header h3 {
    color: var(--white);
    font-size: 1.5rem
}

.batch-card-body {
    padding: 2rem
}

.batch-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem
}

@media(min-width:640px) {
    .batch-grid {
        grid-template-columns: 1fr 1fr
    }
}

.batch-type {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid;
    transition: var(--transition)
}

.batch-type-blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #bfdbfe
}

.batch-type-blue:hover {
    border-color: var(--blue)
}

.batch-type-green {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-color: #bbf7d0
}

.batch-type-green:hover {
    border-color: var(--green)
}

.batch-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.batch-type-blue .batch-icon {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white)
}

.batch-type-green .batch-icon {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white)
}

.batch-info h4 {
    font-size: 1.125rem;
    color: var(--gray-800);
    margin-bottom: 0.25rem
}

.batch-type-blue .batch-info p {
    color: var(--blue-dark);
    font-weight: 600
}

.batch-type-green .batch-info p {
    color: var(--green-dark);
    font-weight: 600
}

.batch-timing {
    display: inline-block;
    background: var(--gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    margin-top: 0.5rem
}

.batch-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem
}

@media(min-width:640px) {
    .batch-features {
        grid-template-columns: 1fr 1fr
    }
}

.batch-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700)
}

.batch-feature i {
    color: var(--red);
    font-size: 1.25rem
}

.batch-cta {
    text-align: center
}

/* ===== Why Choose Us ===== */
.why-choose-grid {
    display: grid;
    gap: 2rem
}

@media(min-width:1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem
    }
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem
}

.feature-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0
}

.feature-check i {
    font-size: 0.75rem
}

.bg-red {
    background: var(--red)
}

.bg-blue {
    background: var(--blue)
}

.bg-green {
    background: var(--green)
}

.feature-item span {
    font-size: 1rem;
    color: var(--gray-800);
    font-weight: 500
}

.why-choose-video {
    position: sticky;
    top: 5rem
}

.cta-banner {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    color: var(--white);
    margin-top: 3rem
}

.cta-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem
}

.cta-banner p {
    opacity: 0.9;
    margin-bottom: 1.5rem
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9
}

/* ===== Mindfulness ===== */
.mindfulness-grid {
    display: grid;
    gap: 2rem
}

@media(min-width:768px) {
    .mindfulness-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center
    }
}

.mindfulness-content h2 {
    text-align: left
}

.mindfulness-subtitle {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin: 1.5rem 0 1rem
}

.mindfulness-list {
    margin-bottom: 1.5rem
}

.mindfulness-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem
}

.mindfulness-bullet {
    width: 12px;
    height: 12px;
    background: var(--red);
    border-radius: 50%
}

.mindfulness-item span {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-800)
}

.mindfulness-highlight {
    background: linear-gradient(90deg, #fecaca, #fca5a5);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--red)
}

.mindfulness-highlight p {
    color: var(--gray-800);
    font-weight: 600;
    line-height: 1.6
}

/* ===== Value Added Programs ===== */
.value-added-grid {
    display: grid;
    gap: 2rem;
    align-items: center
}

@media(min-width:768px) {
    .value-added-grid {
        grid-template-columns: 2fr 1fr
    }
}

.value-added-title {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.5rem
}

@media(min-width:768px) {
    .value-added-title {
        font-size: 2.25rem
    }
}

.value-added-divider {
    width: 6rem;
    height: 4px;
    background: var(--white);
    margin-bottom: 1.5rem
}

.value-added-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem
}

.value-added-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600
}

@media(min-width:768px) {
    .value-added-list li {
        font-size: 1.125rem
    }
}

.value-added-list li span {
    font-size: 1.25rem
}

.value-added-cta {
    text-align: center
}

@media(min-width:768px) {
    .value-added-cta {
        text-align: right
    }
}

/* ===== Faculty Section ===== */
.faculty-grid {
    display: grid;
    gap: 2rem
}

@media(min-width:768px) {
    .faculty-grid {
        grid-template-columns: 1fr 1fr
    }
}

.faculty-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--yellow);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    display: grid;
    gap: 1.5rem;
    padding: 1.5rem;
    transition: var(--transition)
}

@media(min-width:640px) {
    .faculty-card {
        grid-template-columns: 200px 1fr
    }
}

.faculty-card:hover {
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.5)
}

.faculty-card-content {
    text-align: center
}

.faculty-image {
    margin-bottom: 1rem
}

.faculty-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 4px solid #fef3c7;
    margin: 0 auto
}

.faculty-name {
    font-size: 1.25rem;
    color: var(--gray-800);
    margin-bottom: 0.25rem
}

.faculty-designation {
    color: var(--yellow-dark);
    font-weight: 600;
    font-size: 0.875rem
}

.faculty-video h4 {
    font-size: 1.125rem;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    text-align: center
}

/* ===== Results Grid ===== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
}

@media(min-width:640px) {
    .results-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(min-width:768px) {
    .results-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(min-width:1024px) {
    .results-grid {
        grid-template-columns: repeat(5, 1fr)
    }
}

.result-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl)
}

.result-card img {
    width: 100%;
    height: auto;
    object-fit: contain
}

.results-cta-text {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 1rem
}

/* ===== Testimonials ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
}

@media(min-width:640px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(min-width:1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(6, 1fr)
    }
}

.testimonial-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl)
}

.testimonial-card img {
    width: 100%;
    height: auto
}

/* ===== Resources ===== */
.resources-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem
}

@media(min-width:640px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .resources-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.resource-card {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid var(--blue);
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.resource-card:hover {
    box-shadow: var(--shadow-lg)
}

.resource-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700
}

.resource-icon.bg-blue {
    background: #dbeafe;
    color: var(--blue)
}

.resource-icon.bg-green {
    background: #dcfce7;
    color: var(--green)
}

.resource-icon.bg-purple {
    background: #ede9fe;
    color: var(--purple)
}

.resource-icon.bg-red-dark {
    background: #fee2e2;
    color: var(--red)
}

.resource-icon.bg-yellow {
    background: #fef3c7;
    color: var(--yellow-dark)
}

.resource-icon.bg-indigo {
    background: #e0e7ff;
    color: var(--indigo)
}

.resource-content h4 {
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 0.25rem
}

.resource-content p {
    font-size: 0.875rem;
    color: var(--gray-600)
}

.resources-cta {
    margin-top: 2rem
}

.resources-cta-box {
    background: linear-gradient(135deg, #8B0000, #DC143C, #B22222);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3)
}

.resources-cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem
}

.resources-cta-box p {
    opacity: 0.9;
    margin-bottom: 1.5rem
}

/* ===== Form ===== */
.form-container {
    max-width: 56rem;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 2px solid var(--yellow);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3)
}

@media(min-width:768px) {
    .form-container {
        padding: 2.5rem
    }
}

.form-offer {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    padding: 1rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white)
}

.form-offer i {
    font-size: 1.5rem
}

.form-offer h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem
}

.form-offer p {
    font-size: 0.875rem;
    opacity: 0.9
}

.form-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem
}

@media(min-width:640px) {
    .form-grid {
        grid-template-columns: 1fr 1fr
    }
}

.form-group {
    margin-bottom: 0
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem
}

.required {
    color: var(--red)
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--gray-800)
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1)
}

.form-group input::placeholder {
    color: var(--gray-500)
}

.error-message {
    display: none;
    font-size: 0.75rem;
    color: var(--red);
    margin-top: 0.25rem
}

.form-group.error input,
.form-group.error select {
    border-color: var(--red)
}

.form-group.error .error-message {
    display: block
}

.form-submit {
    margin-bottom: 1.5rem
}

.form-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500)
}

.form-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem
}

.form-trust-item i {
    color: var(--green)
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 3rem 0 1.5rem
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem
}

@media(min-width:768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr
    }
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem
}

.footer-about p {
    color: var(--gray-300);
    font-size: 0.875rem;
    line-height: 1.6
}

.footer-contact h4,
.footer-links h4,
.footer-social h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--white)
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-300)
}

.contact-item a:hover {
    color: var(--white)
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--gray-300);
    transition: var(--transition)
}

.footer-links a:hover {
    color: var(--white)
}

.social-links {
    display: flex;
    gap: 0.75rem
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition)
}

.social-links a:hover {
    background: var(--red)
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-400)
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 45px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25d366;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
}

.whatsapp-float__text {
    display: inline;
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        display: none;
    }
}

/* ===== Utilities ===== */
.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.mt-3 {
    margin-top: 0.75rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-8 {
    margin-top: 2rem
}

.mb-4 {
    margin-bottom: 1rem
}