@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Outfit:wght@300;400;500;700&display=swap');

:root {
    --primary: #D4AF37; /* Metallic Gold */
    --primary-hover: #F3E5AB;
    --primary-dark: #997A00;
    --dark: #07080a; /* Deep rich dark */
    --dark-secondary: #111216;
    --light: #F5F5F5;
    --text: #C4C4C4;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    --font-si: 'Nirmala UI', 'Iskoola Pota', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Language Override */
.lang-si {
    font-family: var(--font-si) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--light);
    font-weight: 600;
}

/* Specifically for Sinhala language where Cinzel might not render well */
.lang-si h1, .lang-si h2, .lang-si h3, .lang-si h4, .lang-si h5, .lang-si h6 {
    font-family: var(--font-si) !important;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.btn {
    display: inline-block;
    padding: 14px 34px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000 !important;
    font-weight: 500;
    font-family: var(--font-body);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transition: all 0.4s ease;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary) !important;
    box-shadow: none;
}
.btn-outline:hover {
    background: var(--primary);
    color: #000 !important;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background-color: rgba(7, 8, 10, 0.85);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: padding 0.3s ease;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links li a {
    color: var(--light);
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after, .nav-links li a.active::after {
    width: 100%;
}

.lang-switch a {
    background: transparent;
    border: 1px solid var(--primary);
    padding: 6px 18px;
    border-radius: 4px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}
.lang-switch a:hover {
    background: var(--primary);
    color: #000;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-end; /* Moved text down to clear the face */
    padding-bottom: 15vh; /* Distance from bottom */
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    object-position: center top; /* Align to the very top to reveal the head fully */
    opacity: 0.6; /* Slight dim for readability */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Made the top part much more transparent to reveal the face, and darkened the bottom for text readability */
    background: linear-gradient(180deg, rgba(7, 8, 10, 0.1) 0%, rgba(7, 8, 10, 0.5) 45%, rgba(7, 8, 10, 0.95) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInOp 1.5s ease;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 5px;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: #e0e0e0;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* Sections */
section {
    padding: 100px 6%;
    position: relative;
}

.about-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h3 {
    font-size: 1.2rem;
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-line {
    width: 60px;
    height: 2px;
    background-color: var(--primary);
    margin: 20px auto 0;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* About Image Wrapper */
.about-img-wrapper {
    position: relative;
    border-radius: 4px;
    padding: 20px;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 2px solid var(--primary);
    border-radius: 4px;
    z-index: 0;
    transform: translate(-15px, -15px);
    transition: transform 0.4s ease;
}

.about-img-wrapper:hover::before {
    transform: translate(-5px, -5px);
}

.about-img-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    filter: brightness(0.9) contrast(1.1);
}

/* Content Text */
.text-box p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #aaa;
}

/* Spec/Feature Cards */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.expertise-card {
    background: var(--dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 6px;
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
}

.expertise-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.expertise-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.expertise-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.expertise-card p {
    font-size: 0.95rem;
    color: #888;
}

/* Video Showcase */
.showcase-section {
    background-color: var(--dark-secondary);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Raban Classes Gallery */
.raban-section {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.raban-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .raban-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .raban-grid {
        grid-template-columns: 1fr;
    }
}

.raban-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: var(--dark-secondary);
    border: 1px solid rgba(212, 175, 55, 0.05);
}

.raban-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.raban-img-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.raban-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.9);
}

.raban-card:hover .raban-img-wrapper img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.raban-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 8, 10, 0.9) 0%, rgba(7, 8, 10, 0.2) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.raban-card:hover .raban-overlay {
    opacity: 1;
}

.raban-icon {
    width: 60px; height: 60px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transform: scale(0.5) translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.raban-card:hover .raban-icon {
    transform: scale(1) translateY(0);
}

/* Awards & Achievements Gallery */
.awards-section {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.awards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.award-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 350px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: var(--dark-secondary);
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.award-img-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.award-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.85);
}

.award-card:hover .award-img-wrapper img {
    transform: scale(1.05);
    filter: brightness(1);
}

.award-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(7, 8, 10, 1) 0%, rgba(7, 8, 10, 0.6) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

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

.award-icon {
    width: 40px; height: 40px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.award-card:hover .award-icon {
    opacity: 1;
    transform: scale(1);
}

.award-overlay h4 {
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--primary);
    text-transform: uppercase;
    text-align: center;
}

/* Global Map Section */
.achievements-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.milestone-list {
    list-style: none;
    margin-top: 30px;
}

.milestone-list li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.3);
    padding: 15px 20px;
    border-radius: 4px;
    border-left: 3px solid var(--primary);
}

.milestone-list li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.stat-box h3 {
    font-size: 3.5rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.stat-box p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
}

/* Academy Banner */
.academy-banner {
    position: relative;
    padding: 120px 6%;
    text-align: center;
    z-index: 1;
}

.academy-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark-secondary);
    z-index: -2;
}

.academy-bg-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: -1;
}

.academy-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 40px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.academy-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.academy-box p {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 40px;
}

/* Modern Bento Gallery */
.gallery-section {
    background-color: var(--dark-secondary);
    padding: 120px 6%;
}

.gallery-grid {
    column-count: 3;
    column-gap: 30px;
}

@media (max-width: 991px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    isolation: isolate;
    border: 1px solid rgba(212, 175, 55, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

/* Metallic Edge Glow */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212,175,55,0.6) 0%, transparent 50%, rgba(212,175,55,0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s ease;
    filter: brightness(0.6) contrast(1.1) grayscale(30%);
}

/* Glassmorphism Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 8, 10, 0.95) 0%, rgba(7, 8, 10, 0.3) 40%, transparent 100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    backdrop-filter: blur(0px);
}

/* Animated Corner Target Accents */
.gallery-overlay::before,
.gallery-overlay::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    border: 2px solid var(--primary);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay::before {
    top: 25px; left: 25px;
    border-right: none;
    border-bottom: none;
    transform: translate(-15px, -15px);
}

.gallery-overlay::after {
    bottom: 25px; right: 25px;
    border-left: none;
    border-top: none;
    transform: translate(15px, 15px);
}

.gallery-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transform: translateY(20px) scale(0.8);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(8px);
}

.gallery-text {
    margin-top: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.gallery-text h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-weight: 500;
}

.gallery-text p {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Hover States */
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.1) grayscale(0%);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    backdrop-filter: blur(3px);
}

.gallery-item:hover .gallery-overlay::before,
.gallery-item:hover .gallery-overlay::after {
    opacity: 1;
    transform: translate(0, 0);
}

.gallery-item:hover .gallery-icon-wrap {
    transform: translateY(0) scale(1);
    opacity: 1;
    background: var(--primary);
    color: #000;
}

.gallery-item:hover .gallery-text {
    transform: translateY(0);
    opacity: 1;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    animation: fadeInModal 0.3s ease forwards;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 85%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.4);
    transform: scale(0.9);
    animation: zoomInModal 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    object-fit: contain;
}

@keyframes zoomInModal {
    to { transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 45px;
    font-weight: 300;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10000;
    cursor: pointer;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Tourism / Contact Styled Section */
.contact-section {
    background: var(--dark-secondary);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 40px;
    align-items: center;
}

.contact-info {
    padding: 40px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    border-top: 3px solid var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item div h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.contact-item div p {
    color: #aaa;
}

.contact-banner {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 100px 60px;
    text-align: center;
    min-height: 550px;
}

.contact-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    border-radius: 8px;
}

.contact-banner h3, .contact-banner p, .contact-banner a {
    position: relative;
    z-index: 1;
}

.contact-banner h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-5px);
    color: #fff;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Footer */
footer {
    background-color: #000;
    padding: 60px 5% 30px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-5px);
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 3.5rem; }
    .hero-content h2 { font-size: 1.5rem; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 40px; }
    .contact-wrap { grid-template-columns: 1fr; }
    .section-title h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links { 
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(7, 8, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: -1;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links li a {
        font-size: 1.3rem;
    }
    .hero-content h1 { font-size: 2.8rem; }
    .academy-banner { padding: 80px 5%; }
    .stat-box h3 { font-size: 2.5rem; }
}
