/* ===== FRANCMATIC TECHNOLOGIES - PROFESSIONAL STYLESHEET ===== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Palette */
    --primary: #0f0c29;
    --primary-light: #1a1a3e;
    --secondary: #4361ee;
    --secondary-light: #5a78ff;

    /* Accent Colors */
    --accent-purple: #7209b7;
    --accent-teal: #06d6a0;
    --accent-orange: #ff6b35;
    --accent-pink: #f72585;
    --accent-gold: #ffc300;
    --accent-cyan: #00b4d8;

    /* Neutrals */
    --dark: #1a1a2e;
    --gray-900: #2d2d44;
    --gray-700: #4a4a6a;
    --gray-500: #7f8c9b;
    --gray-300: #b8c0cc;
    --gray-100: #e8ecf1;
    --light: #f4f6fa;
    --white: #ffffff;

    /* Functional */
    --success: #06d6a0;
    --warning: #ffc300;
    --danger: #ef476f;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-blue: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    --gradient-purple: linear-gradient(135deg, #7209b7 0%, #560bad 100%);
    --gradient-teal: linear-gradient(135deg, #06d6a0 0%, #00b4d8 100%);
    --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #f72585 100%);
    --gradient-warm: linear-gradient(135deg, #f72585 0%, #7209b7 100%);
    --gradient-cool: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
    --gradient-sunset: linear-gradient(135deg, #ff6b35 0%, #ffc300 100%);
    --gradient-mesh: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f72585 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.2);
    --shadow-blue: 0 10px 40px rgba(67, 97, 238, 0.3);
    --shadow-purple: 0 10px 40px rgba(114, 9, 183, 0.3);
    --shadow-teal: 0 10px 40px rgba(6, 214, 160, 0.3);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 3px;
    --radius-md: 3px;
    --radius-lg: 3px;
    --radius-xl: 3px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.3px;
}

.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: left 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--secondary);
    border: 2px solid var(--secondary);
    font-weight: 500;
}

.btn-secondary:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}

.btn-accent {
    background: var(--gradient-warm);
    color: white;
    box-shadow: var(--shadow-purple);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 37, 133, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo img {
    height: 44px;
    margin-right: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    position: relative;
    transition: var(--transition);
    display: inline-block;
    border-radius: var(--radius-sm);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1px;
}

.nav-menu a:hover {
    color: var(--secondary);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.nav-menu a.active {
    color: var(--secondary);
    font-weight: 600;
}

.nav-menu a.active::after {
    transform: scaleX(1);
}

/* Contact Button */
.contact-btn {
    background: var(--gradient-blue) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-blue);
    transition: var(--transition) !important;
}

.contact-btn::after {
    display: none !important;
}

.contact-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(67, 97, 238, 0.4) !important;
}

.contact-btn.active {
    background: var(--gradient-blue) !important;
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(67, 97, 238, 0.1);
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    margin: 3px 0;
    display: block;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
    transform-origin: center;
}

.nav-toggle:hover span {
    background: var(--secondary);
}

.nav-toggle span.active:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--secondary);
}

.nav-toggle span.active:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle span.active:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--secondary);
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 12, 41, 0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 140px 0 100px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(114, 9, 183, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(67, 97, 238, 0.2);
    border: 1px solid rgba(67, 97, 238, 0.3);
    border-radius: 50px;
    color: var(--accent-cyan);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 0.8rem;
}

.hero h1 {
    font-size: 3.4rem;
    margin-bottom: 24px;
    color: white;
    line-height: 1.15;
    font-weight: 700;
}

.hero .highlight {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    animation: slideInRight 0.8s ease-out 0.4s both;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    transition: var(--transition-slow);
}

.hero-image img:hover {
    transform: translateY(-10px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: block;
}

.hero-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===== MISSION & VISION ===== */
.mission-vision {
    padding: 100px 0;
    background: var(--white);
}

.mission-vision .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission, .vision {
    padding: 45px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mission {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
}

.vision {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.mission:hover, .vision:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-blue);
}

.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-warm);
}

.mission h2, .vision h2 {
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.7rem;
}

.mission i {
    color: var(--secondary);
    font-size: 2rem;
}

.vision i {
    color: var(--accent-pink);
    font-size: 2rem;
}

.mission p, .vision p {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 37, 133, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.services-preview::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 214, 160, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 16px;
    color: white;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-teal);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 45px 30px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:nth-child(1)::before { background: var(--gradient-teal); }
.service-card:nth-child(2)::before { background: var(--gradient-warm); }
.service-card:nth-child(3)::before { background: var(--gradient-sunset); }

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
}

.service-card:nth-child(1) i { color: var(--accent-teal); }
.service-card:nth-child(2) i { color: var(--accent-pink); }
.service-card:nth-child(3) i { color: var(--accent-orange); }

.service-card:hover i {
    transform: scale(1.15);
}

.service-card h3 {
    margin-bottom: 15px;
    color: white;
    font-size: 1.35rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-mesh);
}

.footer::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.footer .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    margin-bottom: 25px;
    color: white;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 14px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-teal);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 5px;
}

.footer-tagline {
    font-style: italic;
    color: var(--accent-teal) !important;
    font-size: 0.95rem;
    margin-bottom: 20px !important;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 0;
}

.footer-section a:hover {
    color: var(--accent-teal);
    transform: translateX(4px);
}

.footer-section .fa-phone,
.footer-section .fa-envelope {
    color: var(--accent-teal);
    width: 18px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

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

.social-links a:hover {
    transform: translateY(-4px);
}

.social-links a:nth-child(1):hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.social-links a:nth-child(2):hover {
    background: #000;
    border-color: #000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 22px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 160px 0 80px;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 37, 133, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.page-header .breadcrumb {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.page-header .breadcrumb a {
    color: var(--accent-teal);
}

/* ===== TEAM PAGE ===== */
.team-section {
    padding: 100px 0;
    background: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.team-member {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.team-member:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 2;
}

.team-member:nth-child(1)::before { background: var(--gradient-blue); }
.team-member:nth-child(2)::before { background: var(--gradient-warm); }
.team-member:nth-child(3)::before { background: var(--gradient-teal); }
.team-member:nth-child(4)::before { background: var(--gradient-sunset); }

.team-img {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.team-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(15, 12, 41, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover .team-img::after {
    opacity: 1;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member:hover .team-img img {
    transform: scale(1.08);
}

.team-info {
    padding: 28px;
    text-align: center;
}

.team-info h3 {
    color: var(--primary);
    margin-bottom: 6px;
    font-size: 1.3rem;
}

.position {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.team-member:nth-child(1) .position {
    color: var(--secondary);
    background: rgba(67, 97, 238, 0.1);
}
.team-member:nth-child(2) .position {
    color: var(--accent-pink);
    background: rgba(247, 37, 133, 0.1);
}
.team-member:nth-child(3) .position {
    color: var(--accent-teal);
    background: rgba(6, 214, 160, 0.1);
}
.team-member:nth-child(4) .position {
    color: var(--accent-orange);
    background: rgba(255, 107, 53, 0.1);
}

.team-info p {
    color: var(--gray-500);
    margin-bottom: 22px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--light);
    border-radius: 50%;
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.team-social a:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}

/* ===== ABOUT PAGE ===== */
.about-content {
    padding: 100px 0;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.about-intro h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-intro p {
    color: var(--gray-500);
    line-height: 1.8;
    font-size: 1.05rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 40px 28px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.value-card:nth-child(1)::before { background: var(--gradient-blue); }
.value-card:nth-child(2)::before { background: var(--gradient-warm); }
.value-card:nth-child(3)::before { background: var(--gradient-teal); }
.value-card:nth-child(4)::before { background: var(--gradient-sunset); }

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

.value-card i {
    font-size: 3rem;
    margin-bottom: 22px;
    display: inline-block;
    transition: var(--transition);
}

.value-card:nth-child(1) i { color: var(--secondary); }
.value-card:nth-child(2) i { color: var(--accent-pink); }
.value-card:nth-child(3) i { color: var(--accent-teal); }
.value-card:nth-child(4) i { color: var(--accent-orange); }

.value-card:hover i {
    transform: scale(1.15) rotate(5deg);
}

.value-card h3 {
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 1.3rem;
}

.value-card p {
    color: var(--gray-500);
    line-height: 1.7;
}

.achievements {
    margin-top: 80px;
    text-align: center;
}

.achievements h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

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

.achievement {
    padding: 40px 25px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    color: white;
}

.achievement:nth-child(1) { background: var(--gradient-blue); }
.achievement:nth-child(2) { background: var(--gradient-warm); }
.achievement:nth-child(3) { background: var(--gradient-teal); }
.achievement:nth-child(4) { background: var(--gradient-purple); }

.achievement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.achievement:hover::before {
    transform: translateX(100%);
}

.achievement:hover {
    transform: translateY(-8px);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.achievement-text {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICES PAGE ===== */
.services-intro {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #eef2ff 0%, #e8f4f8 100%);
}

.services-intro .lead {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-700);
}

.all-services {
    padding: 100px 0;
    background: var(--light);
}

.services-grid.detailed {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card.detailed {
    padding: 40px;
    text-align: left;
    background: linear-gradient(145deg, #f8f9ff 0%, #f0f4ff 100%);
    border: 1px solid rgba(67, 97, 238, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card.detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 1;
}

.service-card.detailed:nth-child(1)::before { background: var(--gradient-blue); }
.service-card.detailed:nth-child(2)::before { background: var(--gradient-warm); }
.service-card.detailed:nth-child(3)::before { background: var(--gradient-teal); }
.service-card.detailed:nth-child(4)::before { background: var(--gradient-sunset); }
.service-card.detailed:nth-child(5)::before { background: var(--gradient-purple); }
.service-card.detailed:nth-child(6)::before { background: var(--gradient-cool); }
.service-card.detailed:nth-child(7)::before { background: var(--gradient-orange); }

.service-card.detailed:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 22px;
    display: inline-block;
    transition: var(--transition);
}

.service-card.detailed:nth-child(1) .service-icon { color: var(--secondary); }
.service-card.detailed:nth-child(2) .service-icon { color: var(--accent-pink); }
.service-card.detailed:nth-child(3) .service-icon { color: var(--accent-teal); }
.service-card.detailed:nth-child(4) .service-icon { color: var(--accent-orange); }
.service-card.detailed:nth-child(5) .service-icon { color: var(--accent-purple); }
.service-card.detailed:nth-child(6) .service-icon { color: var(--accent-cyan); }
.service-card.detailed:nth-child(7) .service-icon { color: var(--accent-gold); }

.service-card.detailed:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

.service-card.detailed h3 {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 1.4rem;
}

.service-card.detailed p {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    position: relative;
    font-size: 0.95rem;
    transition: var(--transition);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:before {
    content: '\2192';
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-features li:hover {
    padding-left: 34px;
    color: var(--secondary);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
    color: white;
}

.section-title.black {
    color: white !important;
}

.section-title.black::after {
    background: var(--gradient-teal);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 70px;
}

.process-step {
    text-align: center;
    padding: 40px 28px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    color: white;
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 22px;
    font-family: 'Poppins', sans-serif;
}

.process-step:nth-child(1) .step-number { background: var(--gradient-blue); }
.process-step:nth-child(2) .step-number { background: var(--gradient-warm); }
.process-step:nth-child(3) .step-number { background: var(--gradient-teal); }
.process-step:nth-child(4) .step-number { background: var(--gradient-purple); }

.process-step h3 {
    margin-bottom: 12px;
    color: white;
    font-size: 1.2rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* ===== PRODUCTS PAGE ===== */
.products-section {
    padding: 80px 0;
    background: var(--light);
}

.products-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.products-intro h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.products-intro p {
    color: var(--gray-500);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Product Grid Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.product-item {
    background: var(--white);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 2;
}

.product-item:nth-child(1)::before { background: var(--gradient-blue); }
.product-item:nth-child(2)::before { background: var(--gradient-teal); }
.product-item:nth-child(3)::before { background: var(--gradient-warm); }
.product-item:nth-child(4)::before { background: var(--gradient-purple); }

.product-item-image {
    overflow: hidden;
    position: relative;
    background: var(--light);
}

.product-item-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.product-item:hover .product-item-image img {
    transform: scale(1.06);
}

.product-item-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.badge-live {
    background: var(--accent-teal);
    color: white;
}

.badge-new {
    background: var(--accent-pink);
    color: white;
}

.badge-offline {
    background: var(--accent-purple);
    color: white;
}

.product-item-content {
    padding: 30px;
}

.product-item-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-item-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.product-item:nth-child(1) .product-item-tagline { color: var(--secondary); }
.product-item:nth-child(2) .product-item-tagline { color: var(--accent-teal); }
.product-item:nth-child(3) .product-item-tagline { color: var(--accent-pink); }
.product-item:nth-child(4) .product-item-tagline { color: var(--accent-purple); }

.product-item-content > p {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-features-list {
    list-style: none;
    margin-bottom: 24px;
}

.product-features-list li {
    padding: 6px 0;
    color: var(--gray-700);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features-list li i {
    font-size: 0.8rem;
    width: 18px;
    text-align: center;
}

.product-item:nth-child(1) .product-features-list li i { color: var(--secondary); }
.product-item:nth-child(2) .product-features-list li i { color: var(--accent-teal); }
.product-item:nth-child(3) .product-features-list li i { color: var(--accent-pink); }
.product-item:nth-child(4) .product-features-list li i { color: var(--accent-purple); }

.product-item-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-item-actions .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
    min-width: 120px;
}

/* Sub-products (School Manage) */
.sub-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius-md);
}

.sub-product {
    text-align: center;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.sub-product:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.sub-product img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
    margin-bottom: 10px;
}

.sub-product h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.sub-product p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.sub-product .btn {
    padding: 6px 16px;
    font-size: 0.8rem;
}

/* ===== UPCOMING PRODUCTS ===== */
.upcoming-products {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.upcoming-products h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.upcoming-products > .container > p {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.upcoming-product {
    background: var(--white);
    padding: 45px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.upcoming-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.upcoming-product:nth-child(1)::before { background: var(--gradient-sunset); }
.upcoming-product:nth-child(2)::before { background: var(--gradient-cool); }

.upcoming-product:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.upcoming-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.upcoming-product:nth-child(1) .upcoming-icon {
    background: var(--gradient-sunset);
}
.upcoming-product:nth-child(2) .upcoming-icon {
    background: var(--gradient-cool);
}

.upcoming-product:hover .upcoming-icon {
    transform: scale(1.1);
}

.upcoming-product h3 {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 1.4rem;
}

.upcoming-product p {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 22px;
}

.status {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-development {
    background: rgba(255, 195, 0, 0.15);
    color: #cc9c00;
}

.status-planning {
    background: rgba(67, 97, 238, 0.1);
    color: var(--secondary);
}

/* Partnership Section */
.partnership-section {
    padding: 100px 0;
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.partnership-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 214, 160, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.partnership-section h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
}

.partnership-section p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CONTACT PAGE ===== */
.contact-info-section {
    padding: 100px 0;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.contact-method {
    background: white;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.contact-method:nth-child(1)::before { background: var(--gradient-blue); }
.contact-method:nth-child(2)::before { background: linear-gradient(135deg, #25D366, #128C7E); }
.contact-method:nth-child(3)::before { background: var(--gradient-warm); }
.contact-method:nth-child(4)::before { background: var(--gradient-sunset); }

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 2.2rem;
    transition: var(--transition);
}

.contact-method:nth-child(1) .contact-icon { background: var(--gradient-blue); }
.contact-method:nth-child(3) .contact-icon { background: var(--gradient-warm); }
.contact-method:nth-child(4) .contact-icon { background: var(--gradient-sunset); }

.contact-method:hover .contact-icon {
    transform: scale(1.08);
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-method h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-details {
    margin: 20px 0;
}

.contact-details p {
    margin: 12px 0;
    color: var(--gray-500);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-details i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 16px;
    font-style: italic;
    line-height: 1.6;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: var(--light);
    padding: 35px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.faq-item:nth-child(1)::before { background: var(--gradient-blue); }
.faq-item:nth-child(2)::before { background: var(--gradient-warm); }
.faq-item:nth-child(3)::before { background: var(--gradient-teal); }
.faq-item:nth-child(4)::before { background: var(--gradient-sunset); }

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 14px;
    font-size: 1.15rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--gray-500);
    line-height: 1.7;
}

/* Form Styles */
.contact-form-section {
    padding: 100px 0;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-mesh);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 2.2rem;
}

.form-container > p {
    text-align: center;
    margin-bottom: 45px;
    color: var(--gray-500);
    font-size: 1.05rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
    font-size: 0.95rem;
}

input, select, textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    color: var(--dark);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-blue);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition);
    box-shadow: var(--shadow-blue);
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.5);
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar, .nav-toggle, .footer, .btn, .scroll-top {
        display: none !important;
    }
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    .hero, .page-header {
        padding: 20px 0;
        background: #fff !important;
        color: #000 !important;
    }
    .hero h1, .page-header h1 {
        color: #000 !important;
        -webkit-text-fill-color: #000 !important;
    }
}
