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

:root {
    --primary-dark: #0a3d3f;
    --primary-teal: #1a5f61;
    --accent-cream: #f5f0e8;
    --accent-gold: #d4af37;
    --text-white: #ffffff;
    --text-dark: #1a1a1a;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(26, 95, 97, 0.15);
    --success-green: #1a5f61;
    --warning-orange: #ff9800;
    --text-gray: #4a4a4a;
    --text-light-gray: #6a6a6a;
}

* {
    box-sizing: border-box;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    justify-content: center;
    order: 2;
}

.logo a {
    display: inline-block;
}

.logo-img {
    height: 110px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu-left {
    order: 1;
    justify-content: flex-end;
}

.nav-menu-right {
    order: 3;
    justify-content: flex-start;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-teal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: relative;
    z-index: 1002;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    width: 100%;
    max-width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background-image: url('images/hero-background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100%;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
    z-index: 2;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--accent-cream), var(--accent-gold));
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-cream));
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-teal));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-teal);
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.hero-title-name {
    display: block;
    margin-top: 0.25rem;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

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

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    border-radius: 50px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
    box-shadow: 0 4px 15px rgba(26, 95, 97, 0.3);
}

.cta-button:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 95, 97, 0.4);
    color: var(--text-white);
}

.cta-button.secondary {
    background: transparent;
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.cta-button.secondary:hover {
    background: var(--primary-teal);
    color: var(--text-white);
}

.cta-button.phone {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
}

.cta-button.phone:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.cta-button.cta-primary {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
}

.cta-button.cta-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.cta-button.cta-whatsapp:hover {
    background: #20bd5a;
    border-color: #20bd5a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.cta-button.cta-whatsapp i.fa-whatsapp {
    margin-right: 0.4rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--text-white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(26, 95, 97, 0.3);
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-teal);
}

.section-title.section-title-gradient {
    background: linear-gradient(90deg, #000000, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 95, 97, 0.05) 0%, rgba(10, 61, 63, 0.08) 100%);
    backdrop-filter: blur(10px);
}

.page-header .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-teal);
    text-align: center;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-gray);
    text-align: center;
}

.gallery-tabs-section {
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, rgba(245, 240, 232, 0.3) 0%, rgba(255, 255, 255, 0.5) 100%);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-tab {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: #f5f5f5;
    border: 2px solid rgba(26, 95, 97, 0.4);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.gallery-tab:hover {
    background: rgba(26, 95, 97, 0.1);
    border-color: var(--primary-teal);
    color: var(--primary-teal);
    transform: translateY(-2px);
}

.gallery-tab.active {
    background: var(--primary-teal) !important;
    color: white !important;
    border-color: var(--primary-teal) !important;
    box-shadow: 0 5px 20px rgba(26, 95, 97, 0.4) !important;
    font-weight: 700;
}

.gallery-content {
    display: none;
    padding: 4rem 0;
    animation: fadeIn 0.5s ease;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.gallery-content.active {
    display: block;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.gallery-item {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 95, 97, 0.2);
}

.gallery-image-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, rgba(26, 95, 97, 0.1) 0%, rgba(10, 61, 63, 0.15) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    border-radius: 12px 12px 0 0;
    margin-bottom: 1.5rem;
}

.gallery-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.gallery-image-placeholder p {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.gallery-image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
}

#mezunlar .gallery-image-container,
#galeri .gallery-image-container {
    border-radius: 12px;
    margin-bottom: 0;
}

#mezunlar .gallery-item,
#galeri .gallery-item {
    padding: 0;
}

#mezunlar .gallery-video-container,
#galeri .gallery-video-container {
    border-radius: 12px;
    margin-bottom: 0;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-video-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin-bottom: 1.5rem;
    background: #000;
    position: relative;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-info {
    padding: 0 1.5rem 1.5rem;
}

.gallery-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-teal);
}

.gallery-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.gallery-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.about {
    padding: 8rem 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-teal);
}

.programs {
    padding: 8rem 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.program-card {
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.program-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

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

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

.program-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.program-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-teal);
}

.program-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.program-link {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.program-link:hover {
    transform: translateX(10px);
    color: var(--primary-dark);
}

.why-us {
    padding: 8rem 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

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

.feature-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
}

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

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

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-teal);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.how-to-become {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(245, 240, 232, 0.3) 0%, rgba(255, 255, 255, 0.5) 100%);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.how-to-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.how-to-card {
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-to-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 95, 97, 0.15);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
    background: rgba(26, 95, 97, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-teal);
}

.how-to-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-teal);
    line-height: 1.4;
}

.how-to-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.how-to-card .education-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.how-to-card .education-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.warning-text {
    background: rgba(255, 152, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--warning-orange);
    margin-top: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.info-text {
    background: rgba(26, 95, 97, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-teal);
    margin-top: 1rem;
    color: var(--text-dark);
}

.warning-card {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(255, 152, 0, 0.2);
}

.how-to-summary {
    grid-column: 1 / -1;
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 95, 97, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.how-to-summary h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-teal);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.summary-icon {
    display: none;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.summary-item p {
    font-weight: 600;
    color: var(--primary-teal);
    font-size: 1.1rem;
    margin: 0;
}

.cta-text {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-style: italic;
}

.quick-info-section {
    padding: 4rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 95, 97, 0.03) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.quick-info-card {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.quick-info-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-teal);
}

.quick-info-card > p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.info-link {
    color: var(--primary-teal);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--primary-dark);
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.quick-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 95, 97, 0.15);
}

.quick-info-icon {
    display: none;
}

.quick-info-item p {
    text-align: center;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.quick-info-item strong {
    color: var(--primary-teal);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.cta-section {
    padding: 8rem 0 14rem;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

.cta-section .cta-content.glass-card {
    padding: 3.5rem 2.5rem 4rem;
}

.cta-section .cta-content.glass-card .cta-badge {
    margin-top: 0;
}

.cta-offer-text {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin: -0.5rem 0 1rem 0;
    text-align: center;
}

.cta-section .cta-buttons {
    margin-bottom: 0;
    padding-top: 0.25rem;
}

#cta {
    scroll-margin-top: 140px;
}

.countdown-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.countdown-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.countdown-card .section-title {
    margin-bottom: 0.5rem;
}

.countdown-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.countdown-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem 1.75rem;
    min-width: 80px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.countdown-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1.2;
}

.countdown-label {
    font-size: 0.85rem;
    color: var(--text-light-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.countdown-urgency {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.countdown-urgency strong {
    color: var(--accent-gold);
}

.info-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.info-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.info-popup {
    position: relative;
    max-width: 420px;
    width: 90%;
    padding: 2.5rem 2rem;
    text-align: center;
}

.info-popup h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-teal);
}

.info-popup p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.info-popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.info-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-light);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--text-gray);
    transition: background 0.2s, color 0.2s;
}

.info-popup-close:hover {
    background: var(--primary-teal);
    color: #fff;
}

.info-popup-close::before {
    content: '×';
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9998;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-float-icon {
    font-size: 2rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float-text {
    position: absolute;
    left: -8px;
    transform: translateX(-100%);
    white-space: nowrap;
    background: #25D366;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.whatsapp-float:hover .whatsapp-float-text {
    opacity: 1;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-teal);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-badge {
    display: block;
    visibility: visible;
    background: linear-gradient(135deg, var(--accent-gold), #c9a227);
    color: #fff;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1.25rem 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.education-detail {
    padding: 4rem 0;
}

.education-content {
    max-width: 1000px;
    margin: 0 auto;
}

.education-card {
    margin-bottom: 3rem;
}

.education-image {
    width: 100%;
    height: 300px;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

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

.education-card:hover .education-img {
    transform: scale(1.05);
}

.education-icon {
    display: none;
}

.education-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-align: center;
}

.education-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 2rem;
    text-align: center;
}

.education-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--primary-teal);
}

.education-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.education-list li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    border-bottom: 1px solid rgba(26, 95, 97, 0.1);
}

.education-list li:last-child {
    border-bottom: none;
}

.education-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.about-page {
    padding: 4rem 0 8rem;
}

.about-page-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-main {
    margin-bottom: 3rem;
    position: relative;
}

.about-main-image {
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-main:hover .about-main-img {
    transform: scale(1.05);
}

.about-main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-teal);
}

.about-main h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: var(--primary-teal);
}

.about-main p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.mission-image,
.vision-image {
    width: 100%;
    height: 250px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
}

.mission-img,
.vision-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mission-card:hover .mission-img,
.vision-card:hover .vision-img {
    transform: scale(1.05);
}

.mission-card h3,
.vision-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-teal);
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
}

.values {
    margin: 3rem 0;
}

.values h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-teal);
    text-align: center;
}

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

.value-item {
    text-align: center;
}

.value-icon {
    display: none;
}

.value-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-teal);
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.why-choose {
    margin: 3rem 0;
}

.why-choose h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-teal);
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 10px;
    border-left: 4px solid var(--primary-teal);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.career-support {
    margin: 3rem 0;
    position: relative;
}

.career-image {
    width: 100%;
    height: 300px;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

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

.career-support:hover .career-img {
    transform: scale(1.05);
}

.career-support h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-teal);
}

.career-support p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.contact-page {
    padding: 4rem 0 8rem;
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-teal);
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-icon {
    display: none;
}

.contact-info-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-teal);
}

.contact-info-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.contact-info-text a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--primary-dark);
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light-gray);
    font-style: italic;
}

.working-hours p {
    margin-bottom: 0.5rem;
}

.working-hours strong {
    color: var(--accent-cream);
}

.social-links-contact {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50%;
    color: var(--primary-teal);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-link-contact:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-teal);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link-contact i {
    font-size: 1.4rem;
}

.form-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: var(--bg-white);
    border: 1px solid rgba(26, 95, 97, 0.2);
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(26, 95, 97, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-white);
    color: var(--text-dark);
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    border-radius: 50px;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(26, 95, 97, 0.3);
}

.submit-button:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 95, 97, 0.4);
}

.map-section-full {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.container-full {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.map-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-teal);
    padding: 0 2rem;
}

.google-map-full {
    width: 100%;
    height: 500px;
    margin: 0;
    padding: 0;
}

.google-map-full iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-address-full {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-top: 2rem;
    padding: 0 2rem;
}

.map-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 10px;
    color: var(--primary-teal);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.map-link:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    color: var(--primary-teal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.address-item {
    margin-bottom: 2.5rem;
}

.footer {
    padding: 4rem 0 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-teal);
}

.footer-logo-img {
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--primary-teal);
}

.footer-section p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-dark);
}

.social-links-footer {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50%;
    color: var(--primary-teal);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-link-footer:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-teal);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link-footer i {
    font-size: 1.3rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-light-gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-credit {
    margin-left: auto;
}

.footer-credit a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-credit a:hover {
    color: var(--primary-dark);
}

html {
    scroll-behavior: smooth;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 968px) {
    section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .footer {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    .navbar {
        padding: 1rem 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .nav-container {
        grid-template-columns: 44px 1fr 44px;
        gap: 1rem;
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        position: relative;
        align-items: center;
        justify-items: center;
    }

    .logo {
        order: 2;
        max-width: 150px;
        grid-column: 2;
        grid-row: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        width: 100%;
    }
    
    .logo a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .logo-img {
        height: 60px;
        width: auto;
        max-width: 100%;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        max-width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 0 2rem 0;
        overflow-y: auto;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.2);
        transition: left 0.3s ease;
    }

    .mobile-menu-overlay.active {
        left: 0;
    }

    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }

    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .navbar .nav-menu-left,
    .navbar .nav-menu-right {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .nav-container .nav-menu-left,
    .nav-container .nav-menu-right {
        display: none !important;
    }
    
    .mobile-menu-overlay .nav-menu {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        list-style: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        gap: 0 !important;
    }

    .mobile-menu-overlay .nav-menu li {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        list-style: none !important;
        margin: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu-overlay .nav-menu .nav-link {
        display: block !important;
        width: 100% !important;
        padding: 1rem 1.5rem !important;
        font-size: 1.1rem !important;
        color: var(--text-dark) !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        visibility: visible !important;
        opacity: 1 !important;
        text-align: left !important;
        transition: background 0.3s ease, color 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .mobile-menu-overlay .nav-menu .nav-link:hover {
        background: rgba(26, 95, 97, 0.1) !important;
        color: var(--primary-teal) !important;
    }

    .mobile-menu-overlay .logo {
        display: none;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        order: 1;
        grid-column: 1;
        z-index: 10001 !important;
        position: relative;
        background: rgba(255, 255, 255, 0.95) !important;
        border: 2px solid #1a5f61 !important;
        border-radius: 8px;
        padding: 10px 8px !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        cursor: pointer;
        justify-content: center !important;
        align-items: center !important;
        justify-self: flex-start;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        flex-shrink: 0;
        gap: 5px !important;
        overflow: visible !important;
    }

    .mobile-menu-overlay.active ~ .navbar .hamburger {
        z-index: 10001 !important;
    }
    
    .hamburger span {
        width: 26px !important;
        height: 3px !important;
        background-color: #1a5f61 !important;
        background: #1a5f61 !important;
        display: block !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        z-index: 1003 !important;
        margin: 0 !important;
        padding: 0 !important;
        flex-shrink: 0 !important;
        min-width: 26px !important;
        min-height: 3px !important;
        border: none !important;
        box-shadow: none !important;
        content: '' !important;
    }
    
    .hamburger > span,
    .hamburger span:nth-child(1),
    .hamburger span:nth-child(2),
    .hamburger span:nth-child(3) {
        width: 26px !important;
        height: 3px !important;
        background: #1a5f61 !important;
        background-color: #1a5f61 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1004 !important;
        margin: 0 auto !important;
        padding: 0 !important;
        border: none !important;
        box-sizing: border-box !important;
    }
    
    .hamburger span::before,
    .hamburger span::after {
        display: none !important;
        content: none !important;
    }
    
    .hamburger.active {
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: white !important;
    }
    
    .hamburger.active span {
        background: white !important;
    }

    .mobile-menu-overlay.active ~ .navbar .hamburger.active {
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: white !important;
    }

    .mobile-menu-overlay.active ~ .navbar .hamburger.active span {
        background: white !important;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding-top: 80px;
        min-height: 100vh;
        height: 100vh;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        position: relative;
    }

    .hero-background {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 100vh !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: hidden !important;
    }

    .hero-background::before {
        width: 100% !important;
        height: 100% !important;
        min-height: 100vh !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }

    .hero-content {
        max-width: 100%;
        padding: 2rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }

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

    .hero-title {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        max-width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

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

    .page-header {
        padding: 100px 0 40px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 1rem !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .container-full {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .glass-card {
        padding: 2rem 1.5rem;
    }

    .programs-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .program-card,
    .feature-card {
        min-height: auto;
    }

    .program-image,
    .feature-image {
        height: 220px;
        margin-bottom: 1.5rem;
    }

    .program-card h3,
    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .program-card p,
    .feature-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-main-image {
        height: 280px;
    }

    .mission-image,
    .vision-image {
        height: 220px;
    }

    .career-image {
        height: 250px;
    }

    .education-image {
        height: 250px;
    }

    .about-main h2 {
        font-size: 2rem;
    }

    .about-main h3 {
        font-size: 1.6rem;
    }

    .how-to-become {
        padding: 5rem 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .how-to-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .how-to-card {
        padding: 2rem 1.5rem;
    }

    .how-to-card h3 {
        font-size: 1.3rem;
    }

    .how-to-summary {
        padding: 2rem 1.5rem;
    }

    .how-to-summary h3 {
        font-size: 1.6rem;
    }

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

    .summary-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .summary-item p {
        font-size: 1rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .quick-info-section {
        padding: 3rem 0;
    }

    .quick-info-card h2 {
        font-size: 1.6rem;
    }

    .quick-info-card > p {
        font-size: 1rem;
    }

    .quick-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-info-section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .education-detail {
        padding: 3rem 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .education-content {
        width: 100%;
        max-width: 100%;
    }
    
    .education-card {
        width: 100%;
        max-width: 100%;
    }
    
    .education-card h2 {
        font-size: 2rem;
    }
    
    .education-card h3 {
        font-size: 1.5rem;
    }
    
    .education-card p,
    .education-list li {
        font-size: 1rem;
    }
    
    .education-image {
        height: 200px;
    }
    
    .about-page {
        padding: 3rem 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .about-page-content {
        width: 100%;
        max-width: 100%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-page {
        padding: 3rem 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-form-section,
    .contact-info-section {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 2rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .contact-info-icon {
        font-size: 2rem;
    }
    
    .contact-info-text h3 {
        font-size: 1.3rem;
    }
    
    .contact-info-text p {
        font-size: 1rem;
    }
    
    .form-group {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .submit-button {
        width: 100%;
        max-width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .google-map-full {
        width: 100%;
        max-width: 100%;
        height: 300px;
    }
    
    .map-section-title {
        font-size: 1.8rem;
    }
    
    .map-address-full {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .quick-info-icon {
        font-size: 2.5rem;
    }

    .quick-info-item {
        padding: 1.2rem;
    }

    .quick-info-item strong {
        font-size: 1rem;
    }

    .gallery-tabs-section {
        padding: 2rem 0 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .gallery-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        padding: 0 1rem;
    }

    .gallery-tab {
        width: 100%;
        max-width: 300px;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .gallery-content {
        padding: 3rem 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .gallery-image-placeholder {
        height: 240px;
    }

    .gallery-image-placeholder i {
        font-size: 3rem;
    }

    .gallery-image-container {
        height: 240px;
    }

    .gallery-video-container {
        height: 240px;
    }

    .gallery-info {
        padding: 0 1.2rem 1.2rem;
    }

    .gallery-info h3 {
        font-size: 1.3rem;
    }

    .gallery-description {
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 5rem 0 11rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .cta-section .cta-content.glass-card {
        padding: 2.5rem 1.5rem 3.5rem;
    }

    .countdown-section {
        padding: 3rem 0;
    }

    .countdown-card {
        padding: 2rem 1rem;
    }

    .countdown-timer {
        gap: 0.75rem;
    }

    .countdown-item {
        min-width: 64px;
        padding: 1rem 1.25rem;
    }

    .countdown-value {
        font-size: 1.75rem;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float-icon {
        font-size: 1.75rem;
    }

    .info-popup {
        padding: 2rem 1.5rem;
    }

    .info-popup h3 {
        font-size: 1.5rem;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .google-map-full {
        height: 400px;
    }

    .map-section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .map-address-full {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 568px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-img {
        height: 60px;
    }

    .hero {
        padding-top: 90px;
        min-height: 85vh;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: 2.1rem;
        margin-bottom: 1rem;
    }

    .hero-title-name {
        margin-top: 0.2rem;
    }

    .cta-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .page-header {
        padding: 100px 0 50px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .glass-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .programs-grid,
    .features-grid {
        gap: 1.5rem;
    }

    .program-image,
    .feature-image {
        height: 180px;
    }

    .program-card h3,
    .feature-card h3 {
        font-size: 1.3rem;
    }

    .program-card p,
    .feature-card p {
        font-size: 0.9rem;
    }

    .education-card h2 {
        font-size: 1.8rem;
    }

    .education-intro {
        font-size: 1rem;
    }

    .education-list li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }

    .about-main-image {
        height: 220px;
    }

    .mission-image,
    .vision-image {
        height: 180px;
    }

    .career-image {
        height: 200px;
    }

    .education-image {
        height: 200px;
    }

    .about-main h2 {
        font-size: 1.8rem;
    }

    .about-main h3 {
        font-size: 1.4rem;
    }

    .about-main p {
        font-size: 1rem;
    }

    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 1.8rem;
    }

    .contact-info-item {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .contact-info-text h3 {
        font-size: 1.3rem;
    }

    .contact-info-text p {
        font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .google-map-full {
        height: 350px;
    }

    .map-section-title {
        font-size: 1.8rem;
    }

    .map-address-full {
        font-size: 0.9rem;
    }

    .footer-logo-img {
        height: 80px;
    }

    .footer-section h4 {
        font-size: 1.3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-credit {
        margin-left: 0;
    }
}
