/* ========================================
   GLOCAL - Modern AI Learning Website
   Blue-Green Gradient Theme
   ======================================== */

/* ========== CSS Variables ========== */
:root {
    /* Light Cream Theme with Cyan Accents */
    --primary-cyan: #00a8cc;
    --primary-blue: #0088aa;
    --primary-purple: #9b4dff;
    --primary-teal: #00bfa5;
    --dark-navy: #0a1628;
    --dark-blue: #0f1c2e;
    --dark-gray: #1a2332;
    --light-gray: #f8fafc;
    --cream: #fefdfb;
    --cream-light: #fffefa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-body: #4a5568;
    --text-light: #6b7280;

    --gradient-cyan: linear-gradient(135deg, #00d9ff 0%, #00a8cc 100%);
    --gradient-blue: linear-gradient(135deg, #00a8cc 0%, #0088aa 100%);
    --gradient-purple: linear-gradient(135deg, #9b4dff 0%, #00d9ff 100%);
    --gradient-teal: linear-gradient(135deg, #00bfa5 0%, #00d9ff 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(0, 168, 204, 0.05) 100%);
    --gradient-dark: linear-gradient(135deg, #fefdfb 0%, #fffefa 100%);

    --font-primary: 'Poppins', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 168, 204, 0.15);
    --shadow-cyan: 0 0 20px rgba(0, 168, 204, 0.2);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-body);
    background: var(--cream);
    background-attachment: fixed;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ========== Typography ========== */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-body);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-cyan);
    color: var(--white);
    font-weight: 700;
    box-shadow: var(--shadow-cyan);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 168, 204, 0.4);
}

.btn-secondary {
    background: var(--gradient-teal);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 191, 165, 0.25);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 191, 165, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
}

.btn-outline:hover {
    background: var(--primary-cyan);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-cyan);
}

/* ========== Glass Effect ========== */
.glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 168, 204, 0.15);
    box-shadow: var(--shadow-md);
    border-radius: 20px;
    transition: var(--transition);
}

.glass:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 168, 204, 0.3);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-4px);
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 168, 204, 0.15);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    flex-direction: column;
}

.nav-brand h1 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.nav-brand .tagline {
    font-size: 0.75rem;
    color: var(--primary-cyan);
    margin-top: -4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-cyan);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-cyan);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-cyan);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-content {
    flex: 1;
    color: var(--text-body);
    max-width: 600px;
}

.hero-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: var(--text-dark);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
}

.hero-description {
    color: var(--text-body);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    min-height: 80px;
}

.typing-cursor {
    color: var(--primary-cyan);
    font-weight: 400;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    animation: glowingBorder 6s ease-in-out infinite;
}

/* Animations */
@keyframes glowingBorder {
    0% {
        filter: drop-shadow(0 0 30px rgba(155, 77, 255, 0.8)) drop-shadow(0 0 60px rgba(155, 77, 255, 0.5));
    }
    33% {
        filter: drop-shadow(0 0 30px rgba(0, 191, 165, 0.8)) drop-shadow(0 0 60px rgba(0, 191, 165, 0.5));
    }
    66% {
        filter: drop-shadow(0 0 30px rgba(0, 168, 204, 0.8)) drop-shadow(0 0 60px rgba(0, 168, 204, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(155, 77, 255, 0.8)) drop-shadow(0 0 60px rgba(155, 77, 255, 0.5));
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay-1 {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

/* ========== Mission Section ========== */
.mission {
    padding: 50px 0;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-body);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    padding: 2.5rem;
    text-align: center;
}

.mission-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.mission-card h3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-body);
}

/* Course Icons and Links */
.course-icon-home {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-cyan);
    border-radius: 20px;
    color: var(--white);
}

.btn-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-cyan);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary-teal);
    transform: translateX(5px);
}

/* Step Numbers */
.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-cyan);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
}

/* Testimonial Cards */
.testimonial-card {
    position: relative;
    padding-top: 3rem;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--primary-cyan);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.testimonial-author p {
    color: var(--primary-cyan);
    font-size: 0.95rem;
}

/* Franchise Highlights */
.franchise-highlight {
    text-align: center;
}

/* ========== Stats Section ========== */
.stats {
    padding: 40px 0;
    background: var(--gradient-cyan);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-item p {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
}

/* ========== Certification Section ========== */
.certification {
    padding: 50px 0;
    background: var(--white);
}

.cert-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cert-logo {
    padding: 2rem 3rem;
    text-align: center;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 168, 204, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 168, 204, 0.2);
    border-radius: 20px;
}

.cert-logo:hover {
    background: rgba(0, 168, 204, 0.1);
    border-color: rgba(0, 168, 204, 0.4);
}

.cert-logo img {
    max-width: 150px;
    height: auto;
    filter: brightness(1.1);
    transition: var(--transition);
}

.cert-logo:hover img {
    filter: brightness(1.1) drop-shadow(0 0 15px rgba(0, 168, 204, 0.5));
    transform: scale(1.05);
}

.cert-logo h3 {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    margin-bottom: 0.25rem;
}

.cert-logo p {
    font-size: 0.9rem;
    color: var(--primary-cyan);
}

.certification .section-header h2 {
    color: var(--primary-cyan) !important;
}

.certification .section-header p {
    color: var(--primary-cyan) !important;
}

/* ========== CTA Section ========== */
.cta {
    padding: 50px 0;
    background: var(--gradient-cyan);
    text-align: center;
}

.cta-content {
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta .btn-outline:hover {
    background: var(--white);
    color: var(--primary-cyan);
}

/* ========== Footer ========== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 168, 204, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.about-logo-center {
    max-width: 200px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
}

.footer-col h3 {
    margin-bottom: 1rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: var(--primary-cyan);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-links a:hover {
    background: var(--gradient-cyan);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* ========== Page Header ========== */
.page-header {
    padding: 140px 0 80px;
    text-align: center;
    background: transparent;
    border-bottom: 1px solid rgba(0, 168, 204, 0.15);
}

.page-header h1 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-header p {
    color: var(--text-body);
}

.courses-page-header {
    background-image: url('../assets/images/courseshero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.courses-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.courses-page-header .container {
    position: relative;
    z-index: 2;
}

.courses-page-header h1,
.courses-page-header p {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 15px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.courses-page-header h1 {
    color: var(--primary-cyan);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.courses-page-header p {
    color: var(--text-dark);
    font-size: 1.5rem;
}

/* ========== About Page ========== */
.about-story {
    padding: 40px 0;
    background: transparent;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
}

.story-content p {
    margin-bottom: 1.5rem;
    color: var(--text-body);
}

.glass-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 168, 204, 0.15);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.glass-card img {
    border-radius: 12px;
    width: 100%;
}

.vision-mission {
    padding: 40px 0;
    background: transparent;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.vm-card {
    padding: 3rem;
    text-align: center;
}

.vm-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.vm-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-cyan);
}

.vm-card p {
    color: var(--text-body);
}

/* Founders Section */
.founders {
    padding: 40px 0;
    background: transparent;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.founder-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 168, 204, 0.2);
}

.founder-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid var(--primary-cyan);
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    padding: 4px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    background: var(--white);
}

.founder-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.founder-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 1rem;
    color: var(--primary-cyan);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-desc {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0077b5, #0088cc);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: auto;
}

.linkedin-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.3);
}

.linkedin-link svg {
    width: 20px;
    height: 20px;
}

.values {
    padding: 40px 0;
    background: transparent;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2.5rem;
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-cyan);
}

.value-card p {
    color: var(--text-body);
}

.why-choose {
    padding: 40px 0;
    background: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    text-align: center;
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-icon svg {
    color: var(--primary-cyan);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--primary-cyan);
}

.feature-card p {
    color: var(--text-body);
}

/* ========== Courses Page ========== */
.courses {
    padding: 40px 0;
    background: transparent;
}

.course-card {
    margin-bottom: 3rem;
    padding: 0;
    overflow: hidden;
}

.course-card:last-of-type {
    margin-bottom: 1rem;
}

.course-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--white);
    color: var(--text-dark);
}

.course-header.gradient-blue {
    background: var(--white);
}

.course-header.gradient-green {
    background: var(--white);
}

.course-header.gradient-purple {
    background: var(--white);
}

.course-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    flex-shrink: 0;
}

.course-icon-image {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
}

.course-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-title h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.course-tagline {
    color: var(--text-body);
    font-size: 1.125rem;
}

.course-body {
    padding: 2.5rem;
}

.course-description {
    margin-bottom: 2rem;
}

.course-description p {
    color: var(--text-body);
}

.course-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.detail-value {
    font-weight: 600;
    color: var(--text-dark);
}

.course-curriculum {
    margin-bottom: 2rem;
}

.course-curriculum h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.curriculum-list {
    list-style: none;
}

.curriculum-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
    border-left: 2px solid transparent;
}

.curriculum-list li span {
    color: var(--text-body);
}

.curriculum-list li:hover {
    background: rgba(0, 217, 255, 0.15);
    transform: translateX(5px);
    border-left: 2px solid var(--primary-cyan);
}

.curriculum-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.course-tools {
    margin-bottom: 2rem;
}

.course-tools h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.tools-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tool-tag {
    padding: 0.5rem 1rem;
    background: var(--gradient-cyan);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.course-action {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.why-learn {
    padding: 40px 0;
    background: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-cyan);
}

.benefit-card p {
    color: var(--text-body);
}

/* ========== Franchise Page ========== */
.franchise-intro {
    padding: 40px 0;
    background: transparent;
}

.intro-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-content h2 {
    margin-bottom: 1.5rem;
}

.intro-content p {
    margin-bottom: 3rem;
    color: var(--text-body);
}

.intro-content h2 {
    color: var(--text-dark);
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.franchise-intro .container {
    max-width: 100%;
    padding: 0 40px;
}

@media (max-width: 968px) {
    .intro-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-box {
        flex: 0 0 calc(50% - 1rem);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .intro-stats {
        flex-direction: column;
    }

    .stat-box {
        flex: 1;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.stat-box {
    padding: 1rem 4rem;
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.stat-box h3 {
    font-size: 2rem;
    color: var(--primary-cyan);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.stat-box p {
    color: var(--text-body);
    font-size: 0.9rem;
}

/* Flip Card Effect */
.flip-card {
    perspective: 1000px;
    cursor: pointer;
    padding: 0 !important;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 120px;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
}

.flip-card-front {
    background: transparent;
}

.flip-card-back {
    background: var(--gradient-cyan);
    color: var(--white);
    transform: rotateY(180deg);
    border-radius: 15px;
    gap: 0.5rem;
}

.flip-card-back h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0.3rem 0;
    font-weight: 600;
}

.franchise-models {
    padding: 40px 0;
    background: transparent;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.model-card {
    padding: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.model-card.featured {
    border: 2px solid var(--primary-green);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
}

.model-header {
    padding: 2.5rem;
    text-align: center;
    color: var(--white);
}

.model-header.gradient-blue {
    background: var(--gradient-cyan);
}

.model-header.gradient-green {
    background: var(--gradient-teal);
}

.model-header.gradient-purple {
    background: var(--gradient-purple);
}

.model-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.model-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.model-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Existing Training Centers - Reduced sizes for alignment */
.existing-center-card .model-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.existing-center-card .model-icon svg {
    width: 40px;
    height: 40px;
}

.existing-center-card .model-header h3 {
    font-size: 1.5rem;
}

.existing-center-card .model-subtitle {
    font-size: 0.85rem;
}

.model-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.model-investment {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    margin-bottom: 2rem;
}

.investment-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.investment-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.model-description {
    margin-bottom: 2rem;
}

.model-description p {
    color: var(--text-body);
}

.model-features h4 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.model-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.model-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.model-features li span {
    color: var(--text-body);
}

.model-features svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.model-revenue {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.revenue-split {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.revenue-item {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.revenue-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.revenue-percent {
    display: block;
    font-size: 1.5rem !important;
    font-weight: 700;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.revenue-divider {
    display: none;
}

.revenue-highlight {
    text-align: center;
}

.commission-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-purple);
    color: var(--white);
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.revenue-highlight p {
    color: var(--text-body);
}

.model-action {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.why-partner {
    padding: 40px 0;
    background: transparent;
}

.benefit-item {
    padding: 2rem;
    text-align: center;
}

.benefit-item h3 {
    color: var(--primary-cyan);
}

.benefit-item p {
    color: var(--text-body);
}

.benefit-item .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.roi-section {
    padding: 40px 0;
    background: transparent;
}

.roi-card {
    padding: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.roi-card h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.roi-card > p {
    margin-bottom: 3rem;
    color: var(--text-body);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.roi-item {
    padding: 2rem;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.roi-students {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
}

.roi-revenue {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.roi-profit {
    font-size: 1.125rem;
    color: var(--primary-teal);
    font-weight: 600;
}

.roi-note {
    font-size: 0.875rem;
    color: var(--text-body);
    font-style: italic;
}

.brochure-section {
    padding: 40px 0;
    background: transparent;
}

.brochure-card {
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.brochure-card h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.brochure-card p {
    margin-bottom: 2rem;
    color: var(--text-body);
}

/* ========== Contact Page ========== */
.contact-section {
    padding: 80px 0;
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.form-card {
    padding: 3rem;
}

.form-card h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-card > p {
    margin-bottom: 2rem;
    color: var(--text-body);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(0, 168, 204, 0.25);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    position: relative;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(0, 191, 165, 0.2);
    color: var(--primary-teal);
    border: 1px solid var(--primary-teal);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid #ef4444;
    display: block;
}

.info-card {
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.info-card h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 12px;
}

.info-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-cyan);
}

.info-content p {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.social-card {
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.social-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.social-card p {
    margin-bottom: 1.5rem;
    color: var(--text-body);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 168, 204, 0.08);
    border-radius: 12px;
    transition: var(--transition);
    font-weight: 500;
    color: var(--text-dark);
}

.social-btn:hover {
    background: var(--gradient-cyan);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: var(--shadow-cyan);
}

.contact-form-wrapper .response-card {
    margin-top: 2rem;
}

.hours-card {
    padding: 2.5rem;
    margin-top: 2rem;
}

.hours-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 8px;
}

.day {
    font-weight: 500;
    color: var(--text-dark);
}

.time {
    color: var(--text-body);
}

.response-card {
    padding: 2.5rem;
}

.response-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.response-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.timeline-item:hover .timeline-icon {
    background: rgba(0, 217, 255, 0.2);
    transform: scale(1.05);
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-cyan);
    font-size: 1.125rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-body);
}

.faq-section {
    padding: 20px 0 80px 0;
    background: transparent;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--primary-cyan);
}

/* ========== Responsive Design ========== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-right: 1px solid rgba(0, 168, 204, 0.15);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-container {
        width: 100%;
    }

    .hero-image {
        max-width: 500px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-card,
    .info-card,
    .social-card,
    .hours-card,
    .response-card {
        padding: 2rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .models-grid {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .course-header {
        flex-direction: column;
        text-align: center;
    }

    .course-icon-image {
        width: 150px;
        height: 150px;
    }

    .course-details {
        flex-direction: column;
        gap: 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .courses-page-header h1 {
        font-size: 2rem;
        padding: 0.75rem 1.5rem;
    }

    .courses-page-header p {
        font-size: 1.125rem;
        padding: 0.75rem 1.5rem;
    }

    .courses-page-header {
        min-height: 400px;
    }

    .revenue-split {
        flex-direction: column;
        gap: 1.5rem;
    }

    .revenue-divider {
        display: none;
    }

    .revenue-percent {
        font-size: 1.5rem !important;
    }

    .revenue-label {
        font-size: 0.75rem;
    }

    .model-revenue {
        padding: 1rem;
    }

    /* Contact Page Mobile Styles */
    .contact-section {
        padding: 40px 0;
    }

    .form-card,
    .info-card,
    .social-card,
    .hours-card,
    .response-card {
        padding: 1.5rem;
    }

    .form-card h2 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .info-item {
        gap: 1rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-icon svg {
        width: 20px;
        height: 20px;
    }

    .info-content h4 {
        font-size: 1rem;
    }

    .info-content p {
        font-size: 0.875rem;
    }

    .timeline-item {
        padding-left: 2.5rem;
    }

    .timeline-icon {
        width: 35px;
        height: 35px;
        left: 0;
    }

    .timeline-icon svg {
        width: 18px;
        height: 18px;
    }

    .timeline-content h4 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.875rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .founder-image {
        width: 150px;
        height: 150px;
    }

    .founder-info h3 {
        font-size: 1.25rem;
    }

    .founder-role {
        font-size: 0.9rem;
    }

    .founder-desc {
        font-size: 0.875rem;
    }
}

/* ========================================
   Locations Section
   ======================================== */

.locations {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-icon {
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-icon svg {
    filter: drop-shadow(0 4px 8px rgba(6, 182, 212, 0.3));
}

.location-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.location-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ========================================
   Blog Page Styles
   ======================================== */

.hero-simple {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 50%, #3b82f6 100%);
    text-align: center;
    color: white;
}

.hero-simple h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-simple p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.blog-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.2);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.blog-category {
    background: var(--gradient-cyan);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.blog-card h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

.blog-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(6, 182, 212, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-card .btn {
    align-self: flex-start;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.newsletter-content {
    text-align: center;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-simple h1 {
        font-size: 2rem;
    }

    .hero-simple p {
        font-size: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .newsletter-content {
        padding: 2rem 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* ========== Navigation Login Button ========== */
.nav-login-btn {
    padding: 0.6rem 1.5rem;
    background: var(--gradient-cyan);
    color: var(--white);
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: inline-block;
    margin-left: 1rem;
}

.nav-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-cyan);
}

.nav-login-btn.active {
    background: var(--gradient-purple);
}

/* ========== Login Page Styles ========== */
.login-section {
    padding: 100px 0 60px;
    min-height: calc(100vh - 80px);
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.login-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    width: 120px;
    margin: 0 auto 1.5rem;
}

.login-header h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.login-form label {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.login-form input {
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(0, 168, 204, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    background: var(--white);
    transition: var(--transition);
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-container input {
    cursor: pointer;
}

.forgot-password {
    color: var(--primary-cyan);
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-block {
    width: 100%;
    margin-top: 0.5rem;
}

.login-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.login-divider::before,
.login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.login-divider::before {
    left: 0;
}

.login-divider::after {
    right: 0;
}

.login-divider span {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.95);
    padding: 0 1rem;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-google {
    width: 100%;
    padding: 0.9rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-google:hover {
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.login-footer {
    margin-top: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.login-footer p {
    color: var(--text-body);
    font-size: 0.95rem;
}

.signup-link {
    color: var(--primary-cyan);
    font-weight: 600;
}

.signup-link:hover {
    text-decoration: underline;
}

.login-info {
    position: sticky;
    top: 100px;
}

.info-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.info-card h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-body);
    font-size: 1rem;
}

.benefits-list li svg {
    flex-shrink: 0;
    color: var(--primary-cyan);
}

/* Mobile Responsive for Login */
@media (max-width: 968px) {
    .login-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .login-info {
        position: static;
    }

    .login-card {
        padding: 2rem;
    }

    .info-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-login-btn {
        display: none;
    }

    .login-section {
        padding: 80px 0 40px;
    }

    .login-card {
        padding: 1.5rem;
    }

    .login-logo {
        width: 100px;
    }

    .info-card {
        padding: 1.5rem;
    }
}
