/* ========================================= */
/* CAMPUS FLOW - MAIN STYLESHEET */
/* ========================================= */

/* ===== VARIABLES CSS ===== */
:root {
    --primary-color: #1E88E5;
    --secondary-color: #8BC34A;
    --dark-color: #0D47A1;
    --light-color: #E3F2FD;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --gradient-1: linear-gradient(135deg, #0D47A1 0%, #1E88E5 100%);
    --gradient-2: linear-gradient(135deg, #1E88E5 0%, #8BC34A 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
    cursor: none;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.05s ease;
    transform: translate(-50%, -50%);
}

.cursor-hover {
    width: 50px;
    height: 50px;
    background: rgba(30, 136, 229, 0.1);
    border-color: var(--secondary-color);
}

/* ===== ANIMATED BUBBLES BACKGROUND ===== */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.bubble:nth-child(1) { 
    width: 80px; 
    height: 80px; 
    background: var(--primary-color);
    left: 10%; 
    top: 20%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.bubble:nth-child(2) { 
    width: 60px; 
    height: 60px; 
    background: var(--secondary-color);
    left: 20%; 
    top: 60%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.bubble:nth-child(3) { 
    width: 100px; 
    height: 100px; 
    background: var(--dark-color);
    right: 10%; 
    top: 30%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.bubble:nth-child(4) { 
    width: 70px; 
    height: 70px; 
    background: var(--primary-color);
    right: 25%; 
    bottom: 20%;
    animation-delay: 1s;
    animation-duration: 17s;
}

.bubble:nth-child(5) { 
    width: 90px; 
    height: 90px; 
    background: var(--secondary-color);
    left: 30%; 
    bottom: 30%;
    animation-delay: 3s;
    animation-duration: 19s;
}

.bubble:nth-child(6) { 
    width: 50px; 
    height: 50px; 
    background: var(--primary-color);
    right: 35%; 
    top: 50%;
    animation-delay: 5s;
    animation-duration: 16s;
}

.bubble:nth-child(7) { 
    width: 75px; 
    height: 75px; 
    background: var(--dark-color);
    left: 50%; 
    top: 10%;
    animation-delay: 2.5s;
    animation-duration: 21s;
}

.bubble:nth-child(8) { 
    width: 65px; 
    height: 65px; 
    background: var(--secondary-color);
    left: 70%; 
    bottom: 40%;
    animation-delay: 4.5s;
    animation-duration: 18.5s;
}

.bubble:nth-child(9) { 
    width: 85px; 
    height: 85px; 
    background: var(--primary-color);
    right: 15%; 
    bottom: 10%;
    animation-delay: 1.5s;
    animation-duration: 19.5s;
}

.bubble:nth-child(10) { 
    width: 95px; 
    height: 95px; 
    background: var(--dark-color);
    left: 15%; 
    top: 80%;
    animation-delay: 3.5s;
    animation-duration: 22s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-50px) translateX(50px) rotate(90deg);
    }
    50% {
        transform: translateY(-100px) translateX(-50px) rotate(180deg);
    }
    75% {
        transform: translateY(-50px) translateX(-100px) rotate(270deg);
    }
}

/* ===== LOADING SCREEN ===== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.loader h3 {
    color: var(--white);
    font-weight: 700;
    font-size: 2rem;
}

.loader .spinner-border {
    width: 4rem;
    height: 4rem;
    border-width: 0.3rem;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: var(--gradient-2);
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.announcement-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ===== HEADER/NAVBAR ===== */
.header-navbar {
    position: sticky;
    top: 44px;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header-navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark-color);
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    transition: var(--transition);
}

.logo-icon:hover {
    transform: rotate(360deg);
}

.logo-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 16px !important;
    margin: 0 4px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: var(--light-color);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--light-color);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn:hover {
    border-color: var(--primary-color);
    background: var(--light-color);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--gradient-1);
    border-color: var(--primary-color);
    color: var(--white);
}

.lang-btn .flag {
    font-size: 18px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
    animation: fadeInUp 0.8s ease;
}

.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 1.2s ease;
}

.btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: floatCard 3s infinite ease-in-out;
}

.floating-card i {
    font-size: 24px;
    color: var(--primary-color);
}

.card-1 {
    top: 20%;
    left: -50px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -30px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: -30px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===== SECTION COMMON STYLES ===== */
section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--light-color);
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 32px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== WHY SECTION ===== */
.why-section {
    background: var(--white);
}

.why-card {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    background: var(--light-color);
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    background: var(--gradient-2);
    color: var(--white);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 28px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: scale(1.2) rotate(360deg);
    background: var(--dark-color);
    color: var(--white);
}

.why-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    background: var(--white);
}

.partners-slider {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.partner-logo {
    flex: 0 0 auto;
}

.partner-box {
    background: var(--light-color);
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.partner-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.partner-box i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.partner-box span {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-preview {
    background: var(--light-color);
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #FFD700;
    font-size: 18px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.testimonial-author h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* ===== NEWS SECTION ===== */
.news-preview {
    background: var(--white);
}

.news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.news-content {
    padding: 25px;
}

.news-content h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.news-link:hover {
    color: var(--secondary-color);
    gap: 10px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-1);
    padding: 80px 0;
}

.cta-card {
    text-align: center;
    color: var(--white);
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-desc {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    body {
        cursor: auto;
    }
    
    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .floating-card {
        display: none;
    }
    
    .language-switcher {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 50px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        justify-content: space-around;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .cta-card h2 {
        font-size: 1.75rem;
    }
    
    .cta-card p {
        font-size: 1rem;
    }
    
    .whatsapp-float,
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .scroll-top {
        bottom: 90px;
    }
}

@media (max-width: 576px) {
    .announcement-bar {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .partner-box {
        padding: 20px 30px;
    }
}

/* ===== PRICING PAGE STYLES ===== */
.pricing-section {
    background: var(--light-color);
}

.pricing-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.popular {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    background: var(--gradient-2);
    color: var(--white);
}

.pricing-card.popular::before {
    transform: scaleX(1);
    background: var(--secondary-color);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
}

.pricing-period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li i {
    color: var(--secondary-color);
    font-size: 18px;
}

.pricing-card.popular .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.popular .pricing-features li i {
    color: var(--white);
}

.pricing-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background: var(--gradient-1);
    color: var(--white);
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular .pricing-btn {
    background: var(--white);
    color: var(--primary-color);
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    background: var(--gradient-1);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-content {
    padding: 80px 0;
}

.about-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-card h3 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-card h3 i {
    color: var(--primary-color);
    font-size: 28px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.mission-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission-item h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

/* ===== NEWS PAGE STYLES ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.news-full-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-full-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-full-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.news-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-full-card:hover .news-full-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.news-full-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.news-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* ===== TESTIMONIALS PAGE STYLES ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-full-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-full-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: var(--light-color);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-full-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
    padding: 80px 0;
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-info-card {
    background: var(--gradient-1);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-info-text p {
    opacity: 0.9;
    margin: 0;
}

.map-container {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== UTILITY CLASSES ===== */
.gradient-bg {
    background: var(--gradient-1);
}

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

/* ===== ADDITIONAL RESPONSIVE ===== */
@media (max-width: 991px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .mission-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .news-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero {
        padding: 80px 0 50px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .contact-info-card {
        margin-top: 30px;
    }
}

/* ===== END OF STYLESHEET ===== */