@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    --primary-color: #C2963B; /* Slightly darker elegant gold for light bg */
    --primary-hover: #916c1a;
    --dark-bg: #ffffff; /* Bright white */
    --darker-bg: #f8f8fa; /* Light grey */
    --card-bg: rgba(0, 0, 0, 0.03);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.08);
    --light-text: #111111; /* Dark text */
    --gray-text: #555555; /* Dark gray */
    
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.bg-glow {
    position: fixed;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(194, 150, 59, 0.08) 0%, rgba(255,255,255,0) 70%);
    top: -30vw;
    right: -30vw;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}
.bg-glow-2 {
    position: fixed;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(194, 150, 59, 0.05) 0%, rgba(255,255,255,0) 70%);
    bottom: -20vw;
    left: -20vw;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

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

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background-color: transparent;
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid var(--glass-border);
}
.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
}

h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.subtitle {
    font-family: var(--font-main);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-outline {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
    z-index: -1;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}
.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(194, 150, 59, 0.3);
    transform: translateY(-2px);
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    box-shadow: 0 10px 30px rgba(194, 150, 59, 0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}
.transparent-nav:not(.scrolled) .logo, .transparent-nav:not(.scrolled) .mobile-menu-toggle i { color: #ffffff; }
.logo span { color: var(--primary-color); }

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
}
.nav-links li a {
    color: var(--light-text);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}
.transparent-nav:not(.scrolled) .nav-links li a { color: #ffffff; }

.nav-links li a:not(.btn-primary-outline)::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: -5px; left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}
.nav-links li a:hover:not(.btn-primary-outline)::after, 
.nav-links li a.active:not(.btn-primary-outline)::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-video-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: translateZ(0); /* Hardware acceleration for smoother playback */
    will-change: transform;
}
.hero-bg {
    display: none;
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('../assets/images/WhatsApp%20Image%202026-06-30%20at%209.01.02%20AM.jpeg') center/cover no-repeat;
    z-index: 0;
    animation: panBackground 25s linear infinite alternate;
}
@keyframes panBackground {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-top: 80px; /* Push down to avoid navbar overlap on short screens */
}
.hero h2 {
    font-family: var(--font-main);
    font-size: 1.2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 500;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
}
.hero p {
    font-size: 1.25rem;
    color: #f0f0f0;
    margin-bottom: 50px;
    max-width: 500px;
    font-weight: 300;
}
.hero-buttons .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}
.hero-buttons .btn-secondary:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.hero-buttons { display: flex; gap: 20px; }

.about {
    position: relative;
    overflow: hidden;
    padding: 10px 0 40px 0;
}
.floating-notes {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.floating-notes i {
    position: absolute;
    color: rgba(229, 185, 98, 0.08); /* slightly more visible gold */
    animation: float-up 15s linear infinite;
    font-size: 4rem;
}
.floating-notes .note-1 { left: 5%; animation-duration: 28s; animation-delay: 0s; font-size: 6rem; }
.floating-notes .note-2 { left: 85%; animation-duration: 32s; animation-delay: 4s; font-size: 8rem; }
.floating-notes .note-3 { left: 45%; animation-duration: 35s; animation-delay: 8s; font-size: 5rem; }
.floating-notes .note-4 { left: 25%; animation-duration: 40s; animation-delay: 12s; font-size: 4rem; }
.floating-notes .note-5 { left: 70%; animation-duration: 25s; animation-delay: 18s; font-size: 7rem; }
.floating-notes .note-6 { left: 95%; animation-duration: 38s; animation-delay: 6s; font-size: 5rem; }

@keyframes float-up {
    0% { bottom: -20%; transform: rotate(0deg) translateX(0); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { bottom: 120%; transform: rotate(360deg) translateX(80px); opacity: 0; }
}
.about-wrapper {
    display: grid;
    grid-template-columns: 5fr 7fr;
    grid-template-areas: 
        "image text-top"
        "image text-bottom";
    gap: 0 80px;
    align-items: stretch;
}
.about-image {
    grid-area: image;
    position: relative;
    min-height: 400px;
}
.about-image img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(10%);
    box-shadow: 10px 10px 30px rgba(194, 150, 59, 0.2);
    /* Talking Drum Hourglass Shape */
    clip-path: polygon(0% 0%, 100% 0%, 97% 10%, 90% 25%, 80% 40%, 75% 50%, 80% 60%, 90% 75%, 97% 90%, 100% 100%, 0% 100%, 3% 90%, 10% 75%, 20% 60%, 25% 50%, 20% 40%, 10% 25%, 3% 10%);
    animation: squeeze-drum 3s ease-in-out infinite;
}
@keyframes squeeze-drum {
    0% { clip-path: polygon(0% 0%, 100% 0%, 97% 10%, 90% 25%, 80% 40%, 75% 50%, 80% 60%, 90% 75%, 97% 90%, 100% 100%, 0% 100%, 3% 90%, 10% 75%, 20% 60%, 25% 50%, 20% 40%, 10% 25%, 3% 10%); }
    50% { clip-path: polygon(0% 0%, 100% 0%, 98% 10%, 94% 25%, 87% 40%, 85% 50%, 87% 60%, 94% 75%, 98% 90%, 100% 100%, 0% 100%, 2% 90%, 6% 75%, 13% 60%, 15% 50%, 13% 40%, 6% 25%, 2% 10%); }
    100% { clip-path: polygon(0% 0%, 100% 0%, 97% 10%, 90% 25%, 80% 40%, 75% 50%, 80% 60%, 90% 75%, 97% 90%, 100% 100%, 0% 100%, 3% 90%, 10% 75%, 20% 60%, 25% 50%, 20% 40%, 10% 25%, 3% 10%); }
}
.about-text-top {
    grid-area: text-top;
    padding-top: 30px;
}
.about-text-bottom {
    grid-area: text-bottom;
}
.bio-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gray-text);
    margin-bottom: 25px;
    font-weight: 300;
}
.about-content .bio strong {
    color: var(--light-text);
    font-weight: 500;
}
.stats-row {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.stat-box {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}
.stat-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
    font-weight: 500;
}
.instruments-showcase h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
}
.instrument-list-pro {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.instrument-list-pro li {
    font-size: 1.05rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
}
.instrument-list-pro li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-right: 12px;
    animation: bounce-rhythm 3s infinite ease-in-out;
}
@keyframes bounce-rhythm {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-4px) scale(1.1); color: #fff; }
}
.instrument-list-pro li:nth-child(1) i { animation-delay: 0.0s; }
.instrument-list-pro li:nth-child(2) i { animation-delay: 0.2s; }
.instrument-list-pro li:nth-child(3) i { animation-delay: 0.4s; }
.instrument-list-pro li:nth-child(4) i { animation-delay: 0.6s; }
.instrument-list-pro li:nth-child(5) i { animation-delay: 0.8s; }
.instrument-list-pro li:nth-child(6) i { animation-delay: 1.0s; }
.instrument-list-pro li:nth-child(7) i { animation-delay: 1.2s; }
.instrument-list-pro li:nth-child(8) i { animation-delay: 1.4s; }

/* News & Publications */
.news {
    padding: 80px 0;
    background: var(--dark-bg);
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.news-card-body {
    padding: 30px;
}
.news-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--glass-border);
}
.news-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.02);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(194, 150, 59, 0.2);
}
.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--darker-bg);
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.news-card-img + .news-card-body .news-date {
    margin-top: -65px;
}
.news-date .day { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.news-date .month { font-size: 0.8rem; text-transform: uppercase; font-weight: 600; }
.news-date .year { font-size: 0.7rem; font-weight: 500; }
.news-content h3 {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 15px;
    line-height: 1.4;
}
.news-content p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}
.read-more i {
    margin-left: 8px;
    transition: var(--transition);
}
.read-more:hover { color: var(--primary-hover); }
.read-more:hover i { transform: translateX(5px); }

/* Services */
.services {
    padding: 20px 0 40px 0;
    background: var(--dark-bg);
}
.section-header.text-left {
    text-align: left;
    margin-bottom: 60px;
    max-width: 800px;
}
.service-list {
    border-top: 1px solid var(--glass-border);
}
.service-row {
    display: flex;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}
.service-row:hover {
    background: var(--card-bg);
    padding-left: 20px;
}
.service-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    width: 120px;
    flex-shrink: 0;
    opacity: 0.5;
    font-weight: 300;
}
.service-info {
    flex-grow: 1;
}
.service-info h3 {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--light-text);
    margin-bottom: 15px;
    font-weight: 400;
}
.service-info p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
}
@media (max-width: 768px) {
    .service-row {
        flex-direction: column;
    }
    .service-number {
        margin-bottom: 10px;
        font-size: 2.5rem;
    }
}
.genres {
    text-align: center;
    padding: 80px 40px;
    background: url('../assets/images/WhatsApp%20Image%202026-06-30%20at%209.09.21%20AM.jpeg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.genres::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.92), rgba(0,0,0,0.75));
}
.genres-content {
    position: relative;
    z-index: 1;
}
.genres h3 { 
    font-size: 2.5rem; 
    margin-bottom: 30px; 
    color: #fff; 
    font-family: var(--font-heading);
}
.genre-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.genre-tags span {
    padding: 15px 30px;
    border: 1px solid rgba(194, 150, 59, 0.4);
    color: var(--light-text);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 4px;
    background: rgba(194, 150, 59, 0.15);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}
.genre-tags span:hover {
    background: var(--primary-color);
    color: var(--darker-bg);
    transform: translateY(-3px);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.contact-info h3 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}
.contact-info p {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 40px;
}
.info-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 1.1rem;
}
.info-list i {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
}
.info-list a { color: var(--light-text); }
.info-list a:hover { color: var(--primary-color); }
.social-links { display: flex; gap: 15px; margin-top: 40px; }
.social-links a {
    width: 50px; height: 50px;
    border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--light-text);
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
}
.contact-form {
    background: var(--darker-bg);
    padding: 50px;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.form-group { margin-bottom: 25px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: var(--dark-bg);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: var(--light-text);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--dark-bg);
}
.contact-form button { width: 100%; padding: 20px; font-size: 1rem; }

/* Gallery Styles */
.page-header {
    padding: 120px 0 20px;
    text-align: center;
    background: var(--dark-bg);
}
.page-header h1 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}
.page-header p {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding-bottom: 80px;
}
.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(30%);
}
.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-wrapper { flex-direction: column; gap: 60px; }
    .experience-badge { bottom: 20px; right: 20px; }
    .hero h1 { font-size: 5rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
@media (max-width: 768px) {
    .hero-buttons { flex-direction: row; justify-content: center; gap: 10px; }
    .btn-primary, .btn-secondary, .btn-primary-outline { padding: 12px 16px; font-size: 0.75rem; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .section-padding { padding: 60px 0; }
    .page-header { padding: 100px 0 30px; }
}
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 4fr 6fr;
        grid-template-areas: 
            "image text-top"
            "text-bottom text-bottom";
        gap: 40px 30px;
    }
}
@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 3fr 7fr;
        grid-template-areas: 
            "image text-top"
            "text-bottom text-bottom";
        gap: 30px 15px;
    }
    .about-text-top h3 {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }
    .bio-content p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    .stats-row {
        gap: 15px;
        flex-wrap: wrap; /* in case they are too squished */
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .instrument-list-pro {
        grid-template-columns: repeat(2, 1fr); /* Force 2 columns on mobile */
    }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%;
        height: 100vh; width: 100%;
        background: rgba(255,255,255,0.98);
        flex-direction: column; justify-content: center;
        transition: 0.5s cubic-bezier(0.77,0.2,0.05,1);
    }
    .nav-links li a {
        color: var(--light-text) !important;
        font-size: 1.5rem;
        padding: 10px 0;
        display: block;
    }
    .nav-links.active { right: 0; }
    .mobile-menu-toggle { display: block; z-index: 1001; font-size: 1.8rem; }
    .mobile-menu-toggle i.fa-times { color: var(--light-text) !important; }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Base Utility */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px; height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100; transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-5px); color: #fff;}
.about { padding-bottom: 0; }
footer { text-align: center; padding: 40px 0; border-top: 1px solid var(--glass-border); color: var(--gray-text); }

/* Page Header (Gallery) */
.page-header {
    padding: 180px 0 80px;
    background: var(--darker-bg);
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(194, 150, 59, 0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
}

.page-header p {
    color: var(--primary-color);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* Gallery */
.gallery-section {
    background-color: var(--dark-bg);
    padding-top: 0 !important;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: none;
}

.gallery-item::after {
    content: '\f002'; /* FontAwesome search icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    color: #fff;
    font-size: 2.5rem;
    opacity: 0;
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    filter: grayscale(10%);
}

.gallery-item:hover::before {
    opacity: 0.6;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: grayscale(0%);
}

/* Animations */
.animate-up, .fade-in { opacity: 0; transform: translateY(40px); transition: 1s cubic-bezier(0.25, 1, 0.5, 1); }
.fade-in.visible, .animate-up { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Socials */
.socials-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 40px; }
.social-card { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 15px 35px; border-radius: 50px; background: transparent; border: 1px solid var(--glass-border); color: var(--light-text); text-decoration: none; transition: var(--transition); }
.social-card i { font-size: 1.2rem; color: var(--primary-color); transition: var(--transition); }
.social-card span { font-size: 0.95rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.social-card:hover { transform: translateY(-5px); border-color: var(--primary-color); background: rgba(194, 150, 59, 0.1); }
.social-card:hover i { transform: scale(1.1); }

/* Custom Animations */
.name-animate { animation: glow-pulse 3s infinite alternate; }
@keyframes glow-pulse { 0% { text-shadow: 0 0 10px rgba(194, 150, 59, 0.2); } 100% { text-shadow: 0 0 20px rgba(194, 150, 59, 0.6), 0 0 30px rgba(194, 150, 59, 0.4); color: #ffffff; } }
.hire-me-btn { animation: bounce-hire 2s infinite; }
@keyframes bounce-hire { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-15px); } 60% { transform: translateY(-7px); } }

@media (max-width: 768px) {
    h2, .section-title h2 { font-size: 2.2rem; margin-bottom: 1rem; }
    .social-card { width: 100%; justify-content: center; padding: 12px 25px; }
}

/* Article Page Styles */
.article-container {
    max-width: 800px;
    margin: 0 auto;
}
.article-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-text);
}
.article-body h3 {
    font-size: 1.8rem;
    color: var(--light-text);
    margin: 40px 0 20px;
    font-family: var(--font-heading);
}
.article-body p {
    margin-bottom: 25px;
}
.article-body blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    margin: 40px 0;
    background: rgba(194, 150, 59, 0.05);
    border-radius: 0 8px 8px 0;
}
@media (max-width: 768px) {
    .article-main-image {
        height: 250px;
    }
    .article-body {
        font-size: 1.05rem;
    }
}

/* Services Grid Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.service-card {
    background: var(--darker-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}
.service-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(15%);
}
.service-card:hover .service-card-img img {
    filter: grayscale(0%);
    transform: scale(1.1);
}
.service-icon {
    position: absolute;
    bottom: -30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(194, 150, 59, 0.4);
    z-index: 2;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}
.service-card-body {
    padding: 45px 30px 30px;
    background: var(--darker-bg);
    position: relative;
    z-index: 1;
}
.service-card-body h3 {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    color: var(--light-text);
    margin-bottom: 15px;
}
.service-card-body p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Subscribe Section */
.subscribe-section {
    position: relative;
    padding: 100px 0;
    background: url('../assets/images/WhatsApp%20Image%202026-06-30%20at%209.09.22%20AM.jpeg') center/cover no-repeat fixed;
    text-align: left;
    color: #fff;
    margin-top: 60px;
}
.subscribe-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.subscribe-container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}
.subscribe-container h2 {
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}
.subscribe-container p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}
.subscribe-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
}
.subscribe-form input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    background: #fff;
    color: #333;
    font-family: var(--font-main);
    margin-bottom: 20px;
    font-size: 1rem;
}
.subscribe-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(194, 150, 59, 0.3);
}
.btn-subscribe {
    background: #fff;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.btn-subscribe:hover {
    background: var(--primary-color);
    color: #fff;
}


