* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #0f4c75, #3282b8, #0f4c75);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease-in-out infinite;
}

/* Moldova Highlight */
.moldova-highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease-in-out infinite;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
    display: inline-block;
    transform: scale(1.1);
    margin: 0 0.3rem;
}

/* Hero Highlight */
.hero-highlight {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(56, 189, 248, 0.3);
    background: linear-gradient(135deg, #ffffff, #e0f2fe, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(15, 76, 117, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-logo span {
    color: #ff6b6b;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a i {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #3282b8;
    transform: translateY(-2px);
}

.nav-menu a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f1419 0%, #1e3a8a 25%, #3282b8 50%, #0ea5e9 75%, #38bdf8 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="400" cy="300" r="1.5" fill="rgba(255,255,255,0.2)"/><circle cx="600" cy="150" r="2.5" fill="rgba(255,255,255,0.4)"/><circle cx="800" cy="400" r="1" fill="rgba(255,255,255,0.3)"/><circle cx="300" cy="500" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="700" cy="600" r="1.5" fill="rgba(255,255,255,0.3)"/><circle cx="150" cy="700" r="2.5" fill="rgba(255,255,255,0.4)"/><circle cx="850" cy="750" r="1" fill="rgba(255,255,255,0.2)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-badge span {
    font-weight: 600;
    font-size: 1rem;
}

.hero h1 {
    font-size: clamp(1.8rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0.95;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.feature-item i {
    color: #4ade80;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 10px 25px rgba(238, 90, 36, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(238, 90, 36, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.pulse {
    animation: pulseBtn 2s ease-in-out infinite;
}

@keyframes pulseBtn {
    0%, 100% { box-shadow: 0 10px 25px rgba(238, 90, 36, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(238, 90, 36, 0.5); }
}

.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
    to { box-shadow: 0 0 30px rgba(255, 255, 255, 0.4); }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 140px;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #e0f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card p {
    font-weight: 500;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Universities Section */
.universities {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 50%, #f0f9ff 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.2);
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.universities-showcase {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.university-card {
    flex: 1;
    min-width: 350px;
    max-width: 400px;
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(15, 76, 117, 0.1);
    box-shadow: 0 15px 35px rgba(15, 76, 117, 0.08);
}

.university-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #0f4c75, #3282b8, #0ea5e9);
    background-size: 200% 200%;
    animation: gradientMove 3s ease-in-out infinite;
}

.university-tech::before {
    background: linear-gradient(135deg, #0f4c75, #1e40af, #3b82f6);
}

.university-state::before {
    background: linear-gradient(135deg, #0c4a6e, #0284c7, #0ea5e9);
}

.university-medical::before {
    background: linear-gradient(135deg, #164e63, #0891b2, #06b6d4);
}

.university-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(15, 76, 117, 0.15);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(15, 76, 117, 0.1), transparent 30%);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.university-card:hover .card-glow {
    opacity: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.university-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.university-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.university-card:hover .university-icon {
    transform: scale(1.1) rotate(5deg);
}

.university-icon i {
    font-size: 2rem;
    color: white;
}

.university-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.university-tag {
    display: inline-block;
    background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
    color: #0f4c75;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(15, 76, 117, 0.1);
}

.university-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin: 2rem 0;
}

.university-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.university-card:hover .university-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 76, 117, 0.8));
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.university-card:hover .image-overlay {
    transform: translateY(0);
}

.university-features {
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(15, 76, 117, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(15, 76, 117, 0.08);
    transform: translateX(5px);
}

.feature i {
    color: #3282b8;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature span {
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-university {
    width: 100%;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.btn-university::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.5s ease;
}

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

.btn-university:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 76, 117, 0.3);
}

/* Other Universities */
.other-universities {
    margin-top: 4rem;
    text-align: center;
}

.other-uni-card {
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    color: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.other-uni-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.1), transparent 30%);
    animation: rotate 6s linear infinite;
}

.other-uni-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.other-uni-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.other-uni-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.btn-other-uni {
    background: white;
    color: #0f4c75;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-other-uni:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Company Info */
.company-info {
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(15, 76, 117, 0.1);
    border: 1px solid rgba(15, 76, 117, 0.05);
    direction: ltr;
    text-align: left;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(15, 76, 117, 0.1);
}

.info-header i {
    font-size: 2rem;
    color: #3282b8;
}

.info-header h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    direction: ltr;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(15, 76, 117, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
    direction: ltr;
    text-align: left;
}

.info-item:hover {
    background: rgba(15, 76, 117, 0.08);
    transform: translateX(5px);
}

.info-item i {
    color: #3282b8;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item span {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
    direction: ltr;
    display: block;
    width: 100%;
}

/* Social Media Section */
.social-media-section {
    margin-bottom: 3rem;
}

.social-media-section h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.social-media-section h3 i {
    color: #3282b8;
    margin-right: 0.8rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.social-item:hover::before {
    opacity: 1;
}

.social-item i {
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.social-item div {
    position: relative;
    z-index: 2;
}

.social-item h4 {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.social-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.whatsapp-item {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.instagram-item {
    background: linear-gradient(135deg, #e4405f, #833ab4, #fcb045);
}

.youtube-item {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.telegram-item {
    background: linear-gradient(135deg, #0088cc, #005588);
}

.social-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Achievements Card */
.achievements-card {
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.achievements-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.1), transparent 30%);
    animation: rotate 8s linear infinite;
}

.achievement-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.achievement-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.achievement-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.achievement-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.ach-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 50%, #ffffff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-header {
    margin-bottom: 3rem;
}

.story-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.2);
}

.story-header h2 {
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.story-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.founders {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.founder-card {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 76, 117, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 76, 117, 0.05);
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 76, 117, 0.15);
}

.founder-image {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

.founder-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e3f2fd;
}

.founder-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.founder-info h4 {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.founder-info p {
    color: #3282b8;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.founder-info span {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.story-item i {
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.story-item h4 {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.story-item p {
    color: #666;
    line-height: 1.6;
}

.about-visual {
    position: relative;
}

.visual-card {
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    color: white;
    padding: 3rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.1), transparent 30%);
    animation: rotate 6s linear infinite;
}

.visual-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.visual-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.visual-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.visual-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.visual-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.visual-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.number {
    background: white;
    color: #0f4c75;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.visual-item h4 {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.visual-item p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 50%, #f0f9ff 100%);
}

.services-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.services-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #0f4c75, #3282b8, #0ea5e9);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 1), 0 10px 25px rgba(15, 76, 117, 0.2);
    z-index: 2;
}

.timeline-marker i {
    color: white;
    font-size: 1.8rem;
}

.timeline-content {
    flex: 1;
    max-width: 45%;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(15, 76, 117, 0.1);
    margin: 0 3rem;
    position: relative;
    border: 1px solid rgba(15, 76, 117, 0.05);
    direction: ltr;
    text-align: left;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 40px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: white;
}

.timeline-content h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(15, 76, 117, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
    direction: ltr;
    text-align: left;
}

.service-item:hover {
    background: rgba(15, 76, 117, 0.08);
    transform: translateX(5px);
}

.service-item i {
    color: #4ade80;
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    margin-top: 2px;
}

.service-item span {
    color: #555;
    font-weight: 500;
    direction: ltr;
    text-align: left;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 50%, #ffffff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.2);
}

.contact-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(15, 76, 117, 0.08);
    border: 1px solid rgba(15, 76, 117, 0.05);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 76, 117, 0.12);
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.whatsapp .method-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.phone .method-icon {
    background: linear-gradient(135deg, #0f4c75, #3282b8);
}

.email .method-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.method-info h4 {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.method-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.method-info span {
    color: #3282b8;
    font-weight: 600;
}

.contact-form {
    background: linear-gradient(135deg, #f8faff, #e3f2fd);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(15, 76, 117, 0.1);
    border: 1px solid rgba(15, 76, 117, 0.05);
}

.contact-form h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(15, 76, 117, 0.1);
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3282b8;
    box-shadow: 0 0 0 4px rgba(50, 130, 184, 0.1);
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #3282b8;
    z-index: 1;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
    padding-top: 1rem;
}

.form-group textarea + i {
    top: 1rem;
    transform: none;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
}

.faq .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq .section-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.faq .section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a202c;
}

.faq .section-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    font-size: 1.2rem;
    color: #f59e0b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 300px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-cta p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 20px;
}

.faq-cta .btn {
    font-size: 1.1rem;
    padding: 15px 40px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f1419 0%, #1e3a8a 50%, #0f4c75 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="300" cy="200" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="500" cy="150" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="700" cy="300" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="200" cy="400" r="1" fill="rgba(255,255,255,0.09)"/><circle cx="600" cy="500" r="1.5" fill="rgba(255,255,255,0.11)"/><circle cx="400" cy="600" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="800" cy="700" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 25s ease-in-out infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-main h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-main span {
    color: #ff6b6b;
}

.footer-main p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: #3b82f6;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact i {
    color: #3b82f6;
    width: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .universities-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .university-card {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(15, 76, 117, 0.1);
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .universities-showcase {
        flex-direction: column;
    }
    
    .university-card {
        min-width: auto;
        max-width: none;
        padding: 1.5rem;
    }
    
    .university-header h3 {
        font-size: 1.2rem;
    }
    
    .cheapest-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cheapest-text h2 {
        font-size: 1.8rem !important;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 1rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .founders {
        flex-direction: column;
    }
    
    .services-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-marker {
        left: 30px;
        transform: none;
        width: 60px;
        height: 60px;
    }
    
    .timeline-content {
        max-width: none;
        margin-left: 100px;
        margin-right: 0;
        text-align: left !important;
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content::before {
        left: -30px !important;
        right: auto !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-image {
        width: 350px;
        height: 220px;
    }
    
    .universities-showcase {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .university-card {
        flex: 1 1 calc(50% - 1rem);
        min-width: 300px;
        max-width: 400px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
    
    .chart-container {
        padding: 2rem;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero h1 {
        font-size: 1.6rem !important;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 2rem;
    }
    
    .hero-badge {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        margin-bottom: 2rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 3rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .section-header .section-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .europe-cheapest {
        padding: 60px 0;
    }
    
    .universities {
        padding: 60px 0;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .university-card {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .university-header h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .university-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.4rem;
    }
    
    .chart-container {
        padding: 1rem;
    }
    
    .chart-title {
        font-size: 1.2rem;
    }
    
    .chart-bars {
        height: 150px;
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .bar-label {
        font-size: 0.8rem;
    }
    
    .nav-logo h2 {
        font-size: 1.1rem;
    }
    
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .europe-cheapest .cheapest-text h2 {
        font-size: 1.2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
        hyphens: auto;
        text-align: center;
    }
    
    .europe-cheapest .cheapest-text .moldova-highlight {
        font-size: 1.2rem !important;
        transform: scale(1) !important;
        margin: 0 0.1rem !important;
        display: inline !important;
    }
    
    .lead-text {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .price-comparison {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .price-item .country {
        font-size: 0.7rem;
    }
    
    .price-item .price {
        font-size: 1rem;
    }
    
    .country-flag {
        font-size: 1.8rem;
    }
    
    .advantage-item {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
    
    .advantage-item i {
        font-size: 1rem;
    }
    
    .timeline-content {
        margin-left: 80px;
        padding: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        left: 25px;
    }
    
    .services-timeline::before {
        left: 25px;
    }
    
    .service-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .story-item h4 {
        font-size: 1.1rem;
    }
    
    .story-item p {
        font-size: 0.9rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-main h3 {
        font-size: 1.3rem;
    }
    
    .footer-main p {
        font-size: 0.9rem;
    }
}

/* University Detail Pages */
.university-detail {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.uni-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.uni-logo {
    background: linear-gradient(135deg, #3282b8, #0ea5e9);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.uni-info h1 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.uni-tagline {
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.uni-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, #3282b8, #0ea5e9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.uni-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.content-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.content-section h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

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

.dept-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.dept-card:hover {
    border-color: #3282b8;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(50, 130, 184, 0.15);
}

.dept-card i {
    color: #3282b8;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.dept-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.dept-card ul {
    list-style: none;
    padding: 0;
}

.dept-card li {
    padding: 0.5rem 0;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
}

.dept-card li:last-child {
    border-bottom: none;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.price-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.price-card.featured {
    border-color: #3282b8;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(50, 130, 184, 0.2);
}

.price-card.featured::before {
    content: "EN POPÜLER";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3282b8;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-header h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3282b8;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

.price-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.price-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid #e2e8f0;
}

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

.price-features i {
    color: #10b981;
    font-size: 1.1rem;
}

.uni-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.info-item:last-child {
    border-bottom: none;
}

.label {
    color: #64748b;
    font-weight: 500;
}

.value {
    color: #2c3e50;
    font-weight: 600;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.btn-phone {
    background: #3282b8;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* Other Universities List */
.other-uni-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.other-uni-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    border-radius: 12px;
    border: 2px solid rgba(50, 130, 184, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.other-uni-item:hover {
    border-color: #3282b8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(50, 130, 184, 0.15);
}

.other-uni-item i {
    color: #3282b8;
    font-size: 1.3rem;
    min-width: 24px;
}

.other-uni-item span {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
}

/* Social Media Items */
.facebook-item {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    color: white;
}

.facebook-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}

/* Button University as Link */
.btn-university {
    background: linear-gradient(135deg, #3282b8, #0ea5e9);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    margin-top: 1.5rem;
}

.btn-university:hover {
    background: linear-gradient(135deg, #1e40af, #0284c7);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

/* Modern Features Card - 2025 Design */
.modern-features-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-header {
    text-align: center;
    margin-bottom: 2rem;
}

.feature-header i {
    color: #3282b8;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-header h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

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

.feature-item-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.8));
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(50, 130, 184, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3282b8, #0ea5e9, #38bdf8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-item-modern:hover::before {
    transform: scaleX(1);
}

.feature-item-modern:hover {
    border-color: #3282b8;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(50, 130, 184, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-content h4 {
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-align: center;
}

.feature-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

/* Modern 2025 Design Elements */
.hero {
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* Floating Animation for Better UX */
@keyframes float-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.university-card {
    animation: float-gentle 6s ease-in-out infinite;
}

.university-card:nth-child(2) {
    animation-delay: -2s;
}

.university-card:nth-child(3) {
    animation-delay: -4s;
}

/* Modern Glassmorphism Effect */
.section-header {
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3282b8, #0ea5e9);
    border-radius: 2px;
}

/* Interactive Hover States for Modern Feel */
.nav-menu a {
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3282b8, #0ea5e9);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

/* Europe Cheapest Section - Modern Design */
.europe-cheapest {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1e3a8a 50%, #3282b8 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.europe-cheapest::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(120, 119, 198, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 119, 198, 0.2) 0%, transparent 40%);
    z-index: 1;
}

.cheapest-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cheapest-text .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cheapest-text h2 {
    font-size: clamp(1.1rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.price-item.highlight {
    transform: scale(1.1);
}

.country-flag {
    font-size: 2.5rem;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.country {
    font-size: 0.9rem;
    opacity: 0.8;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #38bdf8;
}

.vs-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
    margin: 0 1rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.advantage-item i {
    color: #4ade80;
    font-size: 1.2rem;
}

.chart-container {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 25px;
    padding: 3rem;
    color: #1a1a1a;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.chart-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.chart-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 300px;
    gap: 2rem;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.bar-fill {
    width: 100%;
    background: linear-gradient(to top, #64748b, #94a3b8);
    border-radius: 10px 10px 0 0;
    position: relative;
    transition: all 0.5s ease;
    min-height: 30px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.bar-fill:hover {
    transform: translateY(-5px);
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.15);
}

.chart-bar.highlighted .bar-fill {
    background: linear-gradient(to top, #10b981, #4ade80, #86efac);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.8);
    transform: scale(1.15);
    border: 3px solid #ffffff;
    position: relative;
    z-index: 10;
}

.chart-bar.highlighted .bar-fill::after {
    background: #10b981;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border: none;
    animation: pulse 2s ease-in-out infinite;
}

.chart-bar.highlighted .bar-label {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.chart-bar.expensive .bar-fill {
    background: linear-gradient(to top, #dc2626, #ef4444, #f87171);
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.5);
    animation: pulse 3s ease-in-out infinite;
}

.chart-bar.expensive .bar-fill::after {
    background: #dc2626;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 0.6rem 1.2rem;
    border: none;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.chart-bar.expensive .bar-label {
    color: #dc2626;
    font-size: 1.1rem;
    font-weight: 800;
}

.bar-fill::after {
    content: attr(data-price);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bar-label {
    margin-top: 0.8rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
}

/* Mobile Fix for Moldova Heading - OVERRIDE */
@media (max-width: 768px) {
    section.europe-cheapest .container .cheapest-content .cheapest-text h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    section.europe-cheapest .cheapest-text h2 .moldova-highlight {
        font-size: 1.6rem !important;
        transform: none !important;
        display: inline !important;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    section.europe-cheapest .container .cheapest-content .cheapest-text h2 {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    section.europe-cheapest .cheapest-text h2 .moldova-highlight {
        font-size: 1.3rem !important;
        transform: none !important;
        display: inline !important;
        margin: 0 !important;
    }
}

/* Mobile Responsive for Europe Cheapest Section */
@media (max-width: 1024px) {
    .cheapest-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 1rem;
    }
    
    .vs-separator {
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    .europe-cheapest .cheapest-text h2 {
        font-size: 1.6rem !important;
        line-height: 1.3;
        text-align: center;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .europe-cheapest .cheapest-text .moldova-highlight {
        font-size: 1.6rem !important;
        transform: scale(1) !important;
        display: inline !important;
        margin: 0 0.2rem !important;
    }
    
    .lead-text {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .section-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
    
    .chart-bars {
        height: 150px;
    }
    
    .chart-container {
        padding: 1.5rem;
    }
    
    .chart-title {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .price-comparison {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .price-item .country {
        font-size: 0.8rem;
    }
    
    .price-item .price {
        font-size: 1.2rem;
    }
}

/* Mobile Responsive for University Detail Pages */
@media (max-width: 1024px) {
    .uni-content {
        grid-template-columns: 1fr;
    }
    
    .uni-header {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-table {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .uni-header {
        padding: 2rem;
    }
    
    .uni-info h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 2rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .uni-badges {
        justify-content: center;
    }
    
    .badge {
        font-size: 0.8rem;
    }
    
    .other-uni-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* FINAL MOBILE OVERRIDE - Must be at the end */
@media screen and (max-width: 768px) {
    .europe-cheapest h2,
    .europe-cheapest .cheapest-text h2 {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
        margin: 0 auto 1rem auto !important;
        max-width: 100% !important;
        word-break: break-word !important;
        padding: 0 10px !important;
    }
    
    .moldova-highlight {
        font-size: 1.3rem !important;
        transform: none !important;
        display: inline !important;
        margin: 0 0.1rem !important;
    }
}

@media screen and (max-width: 480px) {
    .europe-cheapest h2,
    .europe-cheapest .cheapest-text h2 {
        font-size: 1.1rem !important;
        line-height: 1.1 !important;
        text-align: center !important;
        margin: 0 auto 1rem auto !important;
        max-width: 100% !important;
        word-break: break-word !important;
        padding: 0 15px !important;
    }
    
    .moldova-highlight {
        font-size: 1.1rem !important;
        transform: none !important;
        display: inline !important;
        margin: 0 0.05rem !important;
    }
}

@media screen and (max-width: 360px) {
    .europe-cheapest h2,
    .europe-cheapest .cheapest-text h2 {
        font-size: 0.95rem !important;
        line-height: 1.1 !important;
        text-align: center !important;
        margin: 0 auto 1rem auto !important;
        max-width: 100% !important;
        word-break: break-word !important;
        padding: 0 20px !important;
    }
    
    .moldova-highlight {
        font-size: 0.95rem !important;
        transform: none !important;
        display: inline !important;
        margin: 0 !important;
    }
}