/* ===== Base Styles ===== */
:root {
    /* Color Palette */
    --navy: #1a2744;
    --gold: #d4a865;
    --cream: #e8dcc8;
    --white: #ffffff;
    --text-dark: #1a2744;
    --text-light: #ffffff;
    
    /* Theme Colors */
    --primary-color: var(--navy);
    --secondary-color: var(--gold);
    --accent-color: var(--cream);
    --text-color: var(--text-dark);
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--navy);
}

h1 {
    font-size: 2.8rem;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 1px;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    color: var(--gold);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--navy);
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: var(--navy);
    transition: var(--transition);
}

a:hover {
    color: var(--gold);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--body-font);
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    letter-spacing: 1.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
    color: var(--navy);
    background: #e0b977;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.btn-light {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.section-padding {
    padding: 80px 0;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 39, 68, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding: 15px 0;
}

.header.scrolled {
    background: rgba(26, 39, 68, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    transition: var(--transition);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-item {
    margin-left: 25px;
    position: relative;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    font-family: var(--body-font);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

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

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--white);
    min-width: 800px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    z-index: 1;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: flex;
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.dropdown-column {
    flex: 1;
    padding: 0 15px;
}

.dropdown-column h4 {
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--body-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.dropdown-column a {
    display: block;
    color: var(--text-dark);
    padding: 8px 0;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: var(--body-font);
}

.dropdown-column a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background: var(--primary-color);
    transition: var(--transition);
}

/* ===== Hero Slider ===== */
.hero-slider {
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.slide {
    height: 90vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 15px;
    text-align: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 39, 68, 0.7), rgba(26, 39, 68, 0.8));
    z-index: 1;
}

.slide-content {
    max-width: 1000px;
    color: var(--white);
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.slide h1 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.slide h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-transform: none;
}

.slide p {
    font-size: 1.2rem;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    line-height: 1.8;
    font-weight: 400;
}

/* Slick Slider Customization */
.slick-dots {
    bottom: 50px;
}

.slick-dots li {
    margin: 0 8px;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li.slick-active button {
    background: var(--gold);
    width: 30px;
    border-radius: 10px;
}

.slick-prev,
.slick-next {
    width: 60px;
    height: 60px;
    z-index: 10;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slick-prev {
    left: 50px;
}

.slick-next {
    right: 50px;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 24px;
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
}

.slick-prev:before {
    content: '\f053';
}

.slick-next:before {
    content: '\f054';
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--gold);
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: var(--navy);
    opacity: 1;
}

/* ===== Programs Section ===== */
.programs-section {
    padding: 100px 0;
    background-color: var(--cream);
    position: relative;
    overflow: hidden;
}

/* Decorative wave pattern */
.programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4a865' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.programs-section .section-title {
    color: var(--navy);
    position: relative;
    z-index: 1;
}

.programs-section .section-subtitle {
    color: var(--navy);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

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

.program-card {
    background: var(--navy);
    border-radius: 10px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.9) 0%, rgba(26, 39, 68, 0.95) 100%);
    z-index: -1;
}

.program-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(212, 168, 101, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 32px;
    transition: var(--transition);
    border: 2px solid rgba(212, 168, 101, 0.2);
}

.program-card:hover .program-icon {
    background: var(--gold);
    color: var(--navy);
    transform: rotateY(180deg);
}

.program-card h3 {
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 1.6rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.program-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.program-card:hover h3::after {
    width: 80px;
}

.program-card p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.7;
}

.program-card .btn-outline {
    margin-top: auto;
    border-color: var(--gold);
    color: var(--gold);
    align-self: center;
}

.program-card .btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #2c3e50 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4a865' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    color: var(--gold);
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.cta-buttons .btn-primary:hover {
    background: #e0b977;
    border-color: #e0b977;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline:hover {
    background: rgba(212, 168, 101, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--navy);
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(5px);
    opacity: 0.1;
    z-index: 0;
}

.testimonials-section .section-title {
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.testimonial {
    padding: 0 15px;
    outline: none;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 40px 30px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 20px 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.testimonial:hover .testimonial-content {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.rating {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating i {
    margin: 0 1px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
    color: var(--navy);
    font-size: 1.05rem;
    line-height: 1.8;
    flex-grow: 1;
}

.testimonial p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: var(--gold);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
    font-weight: 700;
}

.student-info {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px dashed rgba(26, 39, 68, 0.2);
}

.student-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.student-info h4 {
    margin-bottom: 5px;
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 600;
}

.student-info span {
    font-size: 0.9rem;
    color: var(--text-light);
    color: #666;
    font-style: italic;
}

/* Testimonial Navigation Arrows */
.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.testimonials-slider .slick-prev {
    left: -70px;
}

.testimonials-slider .slick-next {
    right: -70px;
}

.testimonials-slider .slick-prev:hover,
.testimonials-slider .slick-next:hover {
    background: var(--navy);
    opacity: 1;
}

.testimonials-slider .slick-prev:before,
.testimonials-slider .slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--navy);
    font-size: 20px;
    opacity: 1;
}

.testimonials-slider .slick-prev:before {
    content: '\f053';
}

.testimonials-slider .slick-next:before {
    content: '\f054';
}

.testimonials-slider .slick-prev:hover:before,
.testimonials-slider .slick-next:hover:before {
    color: var(--gold);
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    background-color: var(--navy);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4a865' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.contact-section .section-title {
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 30px;
    color: var(--gold);
}

.contact-info h2::after {
    left: 0;
    transform: none;
    background: var(--gold);
}

.contact-method {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
    transition: var(--transition);
    padding: 15px;
    border-radius: 8px;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 168, 101, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
    border: 1px solid rgba(212, 168, 101, 0.2);
    transition: var(--transition);
}

.contact-method:hover .contact-icon {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(360deg);
}

.contact-method h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 600;
}

.contact-method p, 
.contact-method a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    display: block;
    transition: var(--transition);
    font-size: 1rem;
}

.contact-method a:hover {
    color: var(--gold);
    text-decoration: none;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

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

.contact-form h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--navy);
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: var(--transition);
    background: #f9f9f9;
    color: var(--navy);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 101, 0.2);
    background: #fff;
}

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

.form-submit {
    text-align: center;
    margin-top: 10px;
}

.form-submit .btn {
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 168, 101, 0.3);
}

.form-submit .btn:hover {
    background: #e0b977;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 168, 101, 0.4);
}

/* Form Icons */
.form-group.with-icon {
    position: relative;
}

.form-group.with-icon i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
}

/* ===== Footer ===== */
.footer {
    background: #0f172a;
    color: var(--white);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-about {
    padding-right: 20px;
}

.footer-about .logo {
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--gold);
    font-family: var(--heading-font);
    text-decoration: none;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
    font-family: var(--heading-font);
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.footer-links ul li,
.footer-courses ul li {
    margin-bottom: 15px;
    transition: var(--transition);
}

.footer-links a,
.footer-courses a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before,
.footer-courses a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.footer-links a:hover,
.footer-courses a:hover {
    color: var(--gold);
    transform: translateX(10px);
    text-decoration: none;
}

.footer-links a:hover::before,
.footer-courses a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact ul li {
    display: flex;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact ul li i {
    margin-right: 15px;
    color: var(--gold);
    font-size: 18px;
    margin-top: 5px;
    min-width: 20px;
    text-align: center;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--gold);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--gold);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-payments i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-payments i:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.back-to-top:hover {
    background: var(--navy);
    color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: var(--white);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
    
    .slide h1 {
        font-size: 2.5rem;
    }
    
    .programs-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slide {
        height: 500px;
    }
    
    .slide h1 {
        font-size: 2.2rem;
    }
    
    .slide p {
        font-size: 1rem;
    }
    
    .dropdown-content {
        min-width: 600px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info h2 {
        text-align: center;
    }
    
    .contact-info h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .container {
        max-width: 540px;
    }
    
    .menu-toggle {
        display: block;
        background-color: var(--gold);
 
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: var(--white);
        color: var(--navy);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 10px 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 10px 0;
        display: block;
        width: 100%;
        color: var(--navy);
    }
    
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        min-width: 100%;
        box-shadow: none;
        padding: 15px 0 0 20px;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        transform: none;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
        margin-top: 0;
    }
    
    .dropdown-column {
        padding: 0;
        margin-bottom: 20px;
    }
    
    .dropdown-column h4 {
        margin-top: 15px;
    }
    
    .slide {
        height: 400px;
    }
    
    .slide h1 {
        font-size: 1.8rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-payments {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 575.98px) {
    .container {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .slide {
        height: 350px;
    }
    
    .slide h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
}
