@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* CSS RESET & VARIABLES */
:root {
    --primary: #be123c;        /* Corporate Classic Crimson matching the logo */
    --primary-light: #e11d48;  /* Vibrant Rose for accents/hovers */
    --accent: #be123c;         /* Accent Crimson */
    --accent-hover: #9f1239;
    --accent-glow: rgba(190, 18, 60, 0.1);
    --secondary: #e11d48;
    
    --bg-main: #ffffff;        /* Clean White background */
    --bg-card: #fdfafb;        /* Subtle red-gray light backgrounds for cards */
    --bg-light: #f5f0f2;       /* Warm light pinkish-gray sections */
    --bg-white: #ffffff;
    
    --text-light: #ffffff;     /* Used for white text on dark sections (like hero/footer) */
    --text-dark: #0f172a;      /* Main text color for white background */
    --text-muted: #475569;     /* Slate gray for body paragraphs */
    --text-dark-muted: #64748b;
    
    --border: #cbd5e1;         /* Clean light borders */
    --border-light: #e2e8f0;
    --shadow: 0 10px 30px -15px rgba(190, 18, 60, 0.08);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-dark);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    font-size: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* UTILITY CLASSES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.text-accent {
    color: var(--accent);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.375rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(190, 18, 60, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(190, 18, 60, 0.15);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

/* HEADER / NAVIGATION */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
    padding: 1.5rem 0;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-light);
}
header.scrolled .nav-links a {
    color: var(--text-dark);
}
header.scrolled .logo-text {
    background: linear-gradient(135deg, var(--text-dark) 60%, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
header.scrolled .logo {
    color: var(--text-dark);
}
header.scrolled .burger span {
    background-color: var(--text-dark);
}

/* SUBPAGES HEADER (When not scrolled, dark background banner) */
.subpage header:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

.subpage header:not(.scrolled) .nav-links a:hover,
.subpage header:not(.scrolled) .nav-links a.active {
    color: var(--text-light);
}

.subpage header:not(.scrolled) .logo-text {
    background: linear-gradient(135deg, var(--text-light) 60%, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subpage header:not(.scrolled) .burger span {
    background-color: var(--text-light);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
}

.logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    background: linear-gradient(135deg, var(--text-dark) 60%, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    position: relative;
    padding: 0.4rem 0;
    color: var(--text-dark); /* Dark text on bright hero header */
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1100;
}

.burger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(
        to top,
        rgba(8, 12, 25, 0.75) 0%,
        rgba(8, 12, 25, 0.45) 35%,
        rgba(8, 12, 25, 0.15) 65%,
        rgba(8, 12, 25, 0.0) 100%
    );
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease;
    background: transparent;
    border: none;
    padding: 0;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-cta .btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.hero-cta .btn-secondary:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* THREE KEY FEATURES GRID */
.features-quick {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    padding-bottom: 4rem;
}

.features-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-quick-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.feature-quick-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-quick-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(190, 18, 60, 0.07);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border: 1px solid rgba(190, 18, 60, 0.12);
}

.feature-quick-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

/* ABOUT SECTION */
.about {
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-content .section-title-label {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.about-content h2 {
    font-size: 1.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    word-break: keep-all;
    overflow-wrap: normal;
}

.about-content p {
    margin-bottom: 2rem;
}

/* SERVICES SECTION */
.services-section {
    background: radial-gradient(circle at 10% 20%, rgba(190, 18, 60, 0.15) 0%, transparent 45%),
                radial-gradient(circle at 90% 80%, rgba(190, 18, 60, 0.12) 0%, transparent 45%),
                linear-gradient(135deg, #0b0f19 0%, #1a1520 100%);
    position: relative;
    overflow: hidden;
}

.glow-sphere-1 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(225,29,72,0.4) 0%, rgba(190,18,60,0) 70%);
    top: 25%;
    left: 20%;
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
}

.glow-sphere-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(225,29,72,0.3) 0%, rgba(190,18,60,0) 70%);
    bottom: 15%;
    right: 15%;
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
}

.services-section .section-header h2 {
    color: #ffffff;
}

.services-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
                inset 1px 1px 0px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
    transform: skewX(-25deg);
    transition: 0.75s ease;
}

.service-card:hover::before {
    left: 150%;
}

.service-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(225, 29, 72, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 
                0 0 25px rgba(225, 29, 72, 0.25),
                inset 1px 1px 0px rgba(255, 255, 255, 0.3);
}

.service-icon {
    font-size: 2.25rem;
    color: #e11d48;
    margin-bottom: 1.75rem;
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: rgba(225, 29, 72, 0.15);
    border-radius: 0.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(225, 29, 72, 0.25);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.1);
}

.service-card h3 {
    color: #ffffff;
    font-size: 1.35rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* PAGES HEADER (FOR SUBPAGES) */
.page-banner {
    position: relative;
    padding: 10rem 0 6rem;
    text-align: center;
    overflow: hidden;
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 15, 25, 0.9), rgba(11, 15, 25, 1));
    z-index: -1;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-light, #ffffff);
}

.page-banner p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-block {
    display: flex;
    gap: 1.25rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent-glow);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.contact-info-text p {
    font-size: 0.95rem;
}

.contact-form-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 3rem;
}

.contact-form-card h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

/* FORMS COMMON STYLES */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* REGISTRATION FORM (DRAG-AND-DROP FILE UPLOADER) */
.registration-container {
    max-width: 800px;
    margin: 0 auto;
}

.file-upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.file-upload-box {
    border: 2px dashed var(--border);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    background-color: var(--bg-card);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.file-upload-box:hover,
.file-upload-box.dragover {
    border-color: var(--accent);
    background-color: var(--accent-glow);
}

.file-upload-box input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.file-upload-box:hover .file-upload-icon {
    color: var(--accent);
    transform: translateY(-2px);
}

.file-upload-box p {
    font-size: 0.85rem;
}

.file-upload-box .file-name {
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--accent);
    word-break: break-all;
}

/* STATS SECTION */
.stats-section {
    padding: 4.5rem 0;
    background: linear-gradient(90deg, #9f1239 0%, #180f24 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 2rem;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-counter {
    font-size: 2.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-light);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* FOOTER */
footer {
    background-color: #121214;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 6rem;
}

/* Footer logo text — override to bright white so it's visible on dark background */
footer .logo-text {
    background: linear-gradient(135deg, #ffffff 60%, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand p {
    margin: 1.5rem 0 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    color: var(--text-dark);
}

.social-icon:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-links-col h3,
.footer-newsletter-col h3 {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    position: relative;
    color: #ffffff;
}

.footer-links-col h3::after,
.footer-newsletter-col h3::after {
    content: '';
    display: block;
    width: 35px;
    height: 3px;
    background-color: var(--accent);
    margin-top: 0.5rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
}

.footer-nav a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-nav a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-newsletter-col p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

/* SUCCESS MODAL STYLE */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 3rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow);
    transform: scale(0.9);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    width: 72px;
    height: 72px;
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.modal h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modal p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(190, 18, 60, 0); }
    50% { box-shadow: 0 0 15px rgba(190, 18, 60, 0.4); }
}

/* SCROLL TRIGGER FADE-IN STYLES */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.slide-left {
    transform: translateX(-40px);
}
.animate-on-scroll.slide-left.visible {
    transform: translateX(0);
}

.animate-on-scroll.slide-right {
    transform: translateX(40px);
}
.animate-on-scroll.slide-right.visible {
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Icon hover states */
.feature-quick-card:hover .feature-quick-icon i {
    animation: iconBounce 0.6s ease;
}

.service-card:hover .service-icon i {
    animation: iconBounce 0.6s ease;
}

.contact-info-block:hover .contact-info-icon i {
    animation: iconBounce 0.6s ease;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .section-padding {
        padding: 6rem 0;
    }
    .hero-title {
        font-size: 3rem;
    }
    .features-quick-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .features-quick {
        margin-top: -40px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--primary);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        transition: var(--transition);
        z-index: 1050;
    }
    
    .nav-links a {
        color: var(--text-light);
    }
    
    .nav-links a::after {
        background-color: var(--text-light);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .burger {
        display: flex;
    }
    
    .burger.active span {
        background-color: var(--text-light) !important;
    }
    
    .burger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .header-actions {
        display: none; /* Hide button in header on mobile, place inside menu instead */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .file-upload-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* FOOTER CREDENTIALS BAR */
.footer-credits-bar {
    background-color: var(--primary);
    color: #ffffff;
    padding: 1.25rem 1rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-credits-bar p {
    color: #ffffff !important;
    margin: 0;
}

.footer-credits-bar a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 700;
    transition: var(--transition);
}

.footer-credits-bar a:hover {
    color: rgba(255, 255, 255, 0.85);
}
