/* ===== CSS Variables ===== */
:root {
    --primary: #0A0A0A;
    --secondary: #FFFFFF;
    --accent: #FFD700;
    --accent-dark: #D4AF37;
    --text: #E0E0E0;
    --text-light: #A0A0A0;
    --dark-bg: #121212;
    --card-bg: #1E1E1E;
    --card-bg-light: #252525;
    --border: #333333;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --box-shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #f9c74f;
    --text-color: #ffffff;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}


a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

.section-title span {
    color: var(--accent);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    z-index: -1;
    opacity: 0.3;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 700;
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.8);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: var(--box-shadow-light);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
    transform: scale(1);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: var(--box-shadow-light);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

/* ===== Header Styles ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 25px 0;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.header.scrolled {
    padding: 15px 0;
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--accent);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-img{
    height: 100px;
}
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}

.logo-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 40px;
}

.main-nav ul li a {
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--accent);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn .menu-bar {
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.mobile-menu-btn.active .menu-bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.mobile-menu-btn.active .menu-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-image-container {
    margin: 0 auto 30px;
    width: 280px;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    border: none; /* Border removed as requested */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--accent);
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color:#FFFFFF(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        display: none; /* Hide buttons on mobile */
    }
    
    .mobile-nav-buttons {
        display: flex; /* Show mobile nav buttons */
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image-container {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        width: 200px;
        height: 200px;
    }
}
/* ===== Services Section ===== */
.services-section {
    padding: 5rem 0;
    background: var(--primary);
}

.service-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255,215,0,0.3);
    color: var(--accent);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.service-item.highlight {
    border: 1px solid rgba(255,215,0,0.3);
    box-shadow: 0 5px 20px rgba(255,215,0,0.1);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: rgba(255,215,0,0.9);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,215,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.2rem;
}

.duration {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.service-details p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.service-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(255,215,0,0.1);
    color: var(--accent);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255,215,0,0.2);
    width: 100%;
    text-align: center;
}

.service-btn:hover {
    background: rgba(255,215,0,0.2);
}

.service-cta {
    background: rgba(255,215,0,0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    border: 1px dashed rgba(255,215,0,0.3);
}
.white-text {
  color: #ffffff;
}


.service-cta h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn:hover {
    background: rgba(255,215,0,0.1);
}

/* ===== Credentials Section ===== */
.credentials-section {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.credentials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 40%);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--accent);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 50%;
    text-align: left;
}

.timeline-content {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
    border-left: 4px solid var(--accent);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--accent);
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.timeline-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.timeline-date {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--accent);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: var(--primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
}

.center-header {
    text-align: center;
    margin-bottom: 60px;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    margin: 20px auto;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 40px 30px;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
    box-shadow: var(--box-shadow-light);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.testimonial-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    font-size: 1rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.client-profile {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info h4 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.client-info p {
    color: rgba(255, 215, 0, 0.8);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: rgba(255, 215, 0, 0.2);
    font-size: 3rem;
}

.testimonials-cta {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px dashed rgba(255, 215, 0, 0.3);
}

.testimonials-cta p {
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.btn-gold {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: #000;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* ===== Gallery Section ===== */
.gallery-section {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    height: 300px;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--secondary);
    font-size: 3rem;
    transition: var(--transition);
    transform: scale(0.8);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== Contact Section ===== */
.contact-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.contact-details h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-hours {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 5px;
}

.opening-hours {
    width: 100%;
}

.day-time {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.day {
    color: var(--text-light);
    font-size: 0.95rem;
}

.time {
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.time.closed {
    color: #ff6b6b;
}

.contact-cta {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.contact-cta p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-methods .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-links {
    margin-top: 30px;
}

.social-links p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}
@media (max-width: 600px) {
    .contact-methods {
        flex-direction: column;
    }

    .contact-methods .btn {
        width: 100%;
    }
}


/* ===== Footer ===== */
/* ===== Footer Styles ===== */
.footer {
    background-color: #000;
    color: var(--text);
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    overflow: visible; /* Changed from hidden */
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 40%);
    pointer-events: none; /* Allows clicks through */
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

/* Footer About Section */
.footer-about .logo {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.footer-about .logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
}

.footer-about .logo-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Footer Links Sections */
.footer-links h4,
.footer-services h4 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.footer-links h4::after,
.footer-services h4::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 15px;
}

/* Footer Links - Critical Clickable Styles */
.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block; /* Changed from block */
    padding: 5px 0;
    position: relative;
    z-index: 10; /* Ensures links stay above other elements */
    pointer-events: auto; /* Forces clickability */
    cursor: pointer;
    text-decoration: none;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent);
    padding-left: 10px;
    transform: translateX(5px);
}

/* Footer Bottom Section */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-bottom a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links,
    .footer-services {
        margin-top: 20px;
    }
    
    .footer-links h4,
    .footer-services h4 {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-about .logo-text {
        font-size: 1.8rem;
    }
    
    .footer-about .logo-highlight {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding: 20px 0;
        font-size: 0.85rem;
    }
}

/* ===== Clickability Guarantee ===== */
/* This ensures nothing can block footer links */
.footer * {
    pointer-events: auto;
}

.footer a {
    pointer-events: auto !important;
}

.footer::before,
.footer::after {
    pointer-events: none !important;
}
/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--box-shadow-light);
    border: none;
    cursor: pointer;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary);
    color: var(--accent);
    border: 2px solid var(--accent);
    transform: translateY(-5px) scale(1.1);
}

/* ===== Lightbox Modal ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
    border: 5px solid var(--accent);
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.close-lightbox {
    position: absolute;
    top: 40px;
    right: 40px;
    color: var(--secondary);
    font-size: 3.5rem;
    cursor: pointer;
    transition: var(--transition);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 1;
}

.close-lightbox:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

/* ===== Video Modal ===== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.video-container {
    width: 90%;
    max-width: 1000px;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 5px solid var(--accent);
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.close-video {
    position: absolute;
    top: 40px;
    right: 40px;
    color: var(--secondary);
    font-size: 3.5rem;
    cursor: pointer;
    transition: var(--transition);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 1;
}

.close-video:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes arrowPulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
    .section {
        padding: 100px 0;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 90px 0;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 1;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--primary);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: var(--transition);
        padding: 100px 30px 30px;
        z-index: 1000;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 30px;
    }
    
    .main-nav ul li {
        margin: 0;
    }
    
    .main-nav ul li a {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        bottom: 30px;
        right: 30px;
    }
    
    .close-lightbox,
    .close-video {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }
    
    /* Completely remove qualification badges on mobile */
    .qualification-badges {
        display: none;
    }
    
    /* Adjust hero section */
    .hero {
        min-height: 600px;
        padding-top: 60px;
    }
    
    /* Optimize headline */
    .hero-content h1 span {
        display: inline;
    }
    
    /* Hide regular hero buttons on mobile */
    .hero-btns {
        display: none;
    }
    
    /* Show mobile nav buttons */
    .mobile-nav-buttons {
        display: flex;
    }
    
    /* Hide scroll indicator */
    .scroll-indicator {
        display: none;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 70px 0;
    }
    
    .hero {
        min-height: 700px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-highlight {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links, .footer-services {
        margin-top: 40px;
    }
    
    /* Make mobile nav buttons slightly smaller */
    .btn-mobile-nav {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}/* ===== CSS Variables ===== */
:root {
    --primary: #0A0A0A;
    --secondary: #FFFFFF;
    --accent: #FFD700;
    --accent-dark: #D4AF37;
    --text: #E0E0E0;
    --text-light: #A0A0A0;
    --dark-bg: #121212;
    --card-bg: #1E1E1E;
    --card-bg-light: #252525;
    --border: #333333;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --box-shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

.section-title span {
    color: var(--accent);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    z-index: -1;
    opacity: 0.3;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 700;
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.8);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: var(--box-shadow-light);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
    transform: scale(1);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: var(--box-shadow-light);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

/* ===== Header Styles ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 25px 0;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.header.scrolled {
    padding: 15px 0;
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}

.logo-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 40px;
}

.main-nav ul li a {
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--accent);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn .menu-bar {
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.mobile-menu-btn.active .menu-bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.mobile-menu-btn.active .menu-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.qualification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
    animation: fadeInDown 0.8s ease;
}

.badge {
    background-color: rgba(255, 215, 0, 0.15);
    color: var(--accent);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    font-weight: 500;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.badge:hover {
    background-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    animation: fadeInDown 1s ease;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-content h1 span {
    color: var(--accent);
    display: block;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 25px;
    animation: fadeIn 1.5s ease;
}

.mobile-nav-buttons {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 30px;
}

.btn-mobile-nav {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-mobile-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    margin-bottom: 5px;
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: var(--accent);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

.arrow {
    width: 15px;
    height: 15px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    animation: arrowPulse 2s infinite;
}

/* ===== Services Section ===== */
.services-section {
    padding: 5rem 0;
    background: var(--primary);
}

.service-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255,215,0,0.3);
    color: var(--accent);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.service-item.highlight {
    border: 1px solid rgba(255,215,0,0.3);
    box-shadow: 0 5px 20px rgba(255,215,0,0.1);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: rgba(255,215,0,0.9);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,215,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.2rem;
}

.duration {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.service-details p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.service-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(255,215,0,0.1);
    color: var(--accent);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255,215,0,0.2);
    width: 100%;
    text-align: center;
}

.service-btn:hover {
    background: rgba(255,215,0,0.2);
}

.service-cta {
    background: rgba(255,215,0,0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    border: 1px dashed rgba(255,215,0,0.3);
}

.service-cta h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn:hover {
    background: rgba(255,215,0,0.1);
}

/* ===== Credentials Section ===== */
.credentials-section {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.credentials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 40%);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--accent);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 50%;
    text-align: left;
}

.timeline-content {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
    border-left: 4px solid var(--accent);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--accent);
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.timeline-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.timeline-date {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--accent);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: var(--primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
}

.center-header {
    text-align: center;
    margin-bottom: 60px;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    margin: 20px auto;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 40px 30px;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
    box-shadow: var(--box-shadow-light);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.testimonial-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    font-size: 1rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.client-profile {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info h4 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.client-info p {
    color: rgba(255, 215, 0, 0.8);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: rgba(255, 215, 0, 0.2);
    font-size: 3rem;
}

.testimonials-cta {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px dashed rgba(255, 215, 0, 0.3);
}

.testimonials-cta p {
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.btn-gold {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: #000;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* ===== Gallery Section ===== */
.gallery-section {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    height: 300px;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--secondary);
    font-size: 3rem;
    transition: var(--transition);
    transform: scale(0.8);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== Contact Section ===== */
.contact-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.contact-details h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-hours {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 5px;
}

.opening-hours {
    width: 100%;
}

.day-time {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.day {
    color: var(--text-light);
    font-size: 0.95rem;
}

.time {
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.time.closed {
    color: #ff6b6b;
}

.contact-cta {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.contact-cta p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-methods .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-links {
    margin-top: 30px;
}

.social-links p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ===== Footer ===== */
.footer {
    background-color: #000;
    color: var(--text);
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 40%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about .logo {
    margin-bottom: 25px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-services h4 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-services h4::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 15px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    font-size: 0.95rem;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent);
    padding-left: 10px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--box-shadow-light);
    border: none;
    cursor: pointer;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary);
    color: var(--accent);
    border: 2px solid var(--accent);
    transform: translateY(-5px) scale(1.1);
}

/* ===== Lightbox Modal ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
    border: 5px solid var(--accent);
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.close-lightbox {
    position: absolute;
    top: 40px;
    right: 40px;
    color: var(--secondary);
    font-size: 3.5rem;
    cursor: pointer;
    transition: var(--transition);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 1;
}

.close-lightbox:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

/* ===== Video Modal ===== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.video-container {
    width: 90%;
    max-width: 1000px;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 5px solid var(--accent);
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.close-video {
    position: absolute;
    top: 40px;
    right: 40px;
    color: var(--secondary);
    font-size: 3.5rem;
    cursor: pointer;
    transition: var(--transition);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 1;
}

.close-video:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes arrowPulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
    .section {
        padding: 100px 0;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 90px 0;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 1;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--primary);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: var(--transition);
        padding: 100px 30px 30px;
        z-index: 1000;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 30px;
    }
    
    .main-nav ul li {
        margin: 0;
    }
    
    .main-nav ul li a {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        bottom: 30px;
        right: 30px;
    }
    
    .close-lightbox,
    .close-video {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }
    
    /* Completely remove qualification badges on mobile */
    .qualification-badges {
        display: none;
    }
    
    /* Adjust hero section */
    .hero {
        min-height: 600px;
        padding-top: 60px;
    }
    
    /* Optimize headline */
    .hero-content h1 span {
        display: inline;
    }
    
    /* Hide regular hero buttons on mobile */
    .hero-btns {
        display: none;
    }
    
    /* Show mobile nav buttons */
    .mobile-nav-buttons {
        display: flex;
    }
    
    /* Hide scroll indicator */
    .scroll-indicator {
        display: none;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 70px 0;
    }
    
    .hero {
        min-height: 700px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-highlight {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links, .footer-services {
        margin-top: 40px;
    }
    
    /* Make mobile nav buttons slightly smaller */
    .btn-mobile-nav {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}