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

/* --- DESIGN SYSTEM --- */
:root {
    --bg-space: #030712;
    --bg-space-dark: #02040a;
    --gold-primary: #FFDE5B;
    --gold-hover: #ffd01a;
    --gold-glow: rgba(255, 222, 91, 0.15);
    --gold-glow-intense: rgba(255, 222, 91, 0.4);
    --card-bg: rgba(11, 15, 25, 0.65);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-border-hover: rgba(255, 222, 91, 0.35);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-white: #ffffff;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- RESET & BASICS --- */
* {
    margin: 0;
    padding: 0;
    box-shadow: none;
    box-sizing: border-box;
}

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

/* Cosmic Background Particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 150px 50px, rgba(255, 255, 255, 0.9), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 300px 100px, rgba(255, 255, 255, 0.4), rgba(0,0,0,0)),
        radial-gradient(2px 2px at 450px 250px, rgba(255, 222, 91, 0.7), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 600px 320px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 800px 180px, rgba(255, 255, 255, 0.6), rgba(0,0,0,0)),
        radial-gradient(2.5px 2.5px at 1000px 400px, rgba(255, 222, 91, 0.5), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 1200px 220px, #ffffff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 1400px 900px;
    opacity: 0.25;
    z-index: -2;
    pointer-events: none;
}

/* Ambient Purple-Gold Nebula Glows */
.nebula-glow {
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, rgba(255, 222, 91, 0.03) 50%, rgba(0, 0, 0, 0) 100%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.glow-top-right {
    top: -10vw;
    right: -10vw;
}

.glow-bottom-left {
    bottom: -15vw;
    left: -15vw;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
}

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

/* --- GLASSMORPHISM CLASS --- */
.glass-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--card-border-hover);
    box-shadow: 0 0 25px var(--gold-glow);
}

/* --- HEADER NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

header.scrolled {
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.logo-link span {
    color: var(--gold-primary);
}

.logo-link svg {
    width: 32px;
    height: 32px;
    fill: var(--gold-primary);
    filter: drop-shadow(0 0 6px var(--gold-glow-intense));
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-primary);
    box-shadow: 0 0 8px var(--gold-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--gold-primary);
    text-shadow: 0 0 8px rgba(255, 222, 91, 0.4);
}

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

/* Dropdown styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 250px;
    background: rgba(11, 15, 25, 0.95);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.dropdown-link:hover {
    background: rgba(255, 222, 91, 0.08);
    color: var(--gold-primary);
    padding-left: 25px;
}

.cta-nav-btn {
    background: linear-gradient(135deg, var(--gold-primary) 0%, #e2b600 100%);
    color: #101210;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 222, 91, 0.2);
}

.cta-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 222, 91, 0.4);
}

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- HERO CAROUSEL --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    margin-bottom: 80px;
}

.slide-track {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide Space Background Graphic overlays */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
    z-index: -1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--bg-space), transparent);
    z-index: 0;
    pointer-events: none;
}

.slide-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

.slide-content-full {
    grid-template-columns: 1fr;
    text-align: center;
}

.slide-tagline {
    font-size: 1.1rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.slide-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.slide-title span {
    color: var(--gold-primary);
    background: linear-gradient(135deg, var(--gold-primary) 0%, #ffc000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 650px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.slide-btn-wrap {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}

.hero-slide.active .slide-tagline,
.hero-slide.active .slide-title,
.hero-slide.active .slide-desc,
.hero-slide.active .slide-btn-wrap {
    transform: translateY(0);
    opacity: 1;
}

.slide-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.85);
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.hero-slide.active .slide-graphic {
    transform: scale(1);
    opacity: 1;
}

.slide-graphic img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(255, 222, 91, 0.2));
}

.pulse-circle {
    position: absolute;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    animation: pulseGlow 4s infinite linear;
    opacity: 0.3;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0; }
    50% { opacity: 0.4; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Button stylings */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, #e2b600 100%);
    color: #101210;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px var(--gold-glow);
    transition: var(--transition-smooth);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--gold-glow-intense);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: var(--text-white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(11, 15, 25, 0.6);
    border: 1px solid var(--card-border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--text-white);
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background: var(--gold-primary);
    color: #101210;
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px var(--gold-glow-intense);
}

.arrow-prev { left: 24px; }
.arrow-next { right: 24px; }

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--gold-primary);
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--gold-primary);
}

/* --- SECTION GENERAL --- */
section.py-100 {
    padding: 100px 0;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    color: var(--gold-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* --- SERVICES SECTION (Homepage Grid) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(255, 222, 91, 0.08);
    border: 1px solid rgba(255, 222, 91, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrap {
    background: var(--gold-primary);
    box-shadow: 0 0 15px var(--gold-primary);
    transform: rotate(5deg) scale(1.05);
}

.service-icon-wrap svg {
    width: 30px;
    height: 30px;
    fill: var(--gold-primary);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrap svg {
    fill: #101210;
}

.service-card-title {
    font-size: 1.3rem;
    margin-bottom: 14px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-title {
    color: var(--gold-primary);
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-primary);
}

.service-card-link svg {
    width: 16px;
    height: 16px;
    fill: var(--gold-primary);
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-link svg {
    transform: translateX(4px);
}

/* --- STATS SECTION --- */
.stats-section {
    background: linear-gradient(180deg, var(--bg-space) 0%, var(--bg-space-dark) 100%);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 15px var(--gold-glow-intense);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- ABOUT HIGHLIGHT SECTION --- */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-graphics {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-main-img {
    max-width: 85%;
    height: auto;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    padding: 24px;
    text-align: center;
    max-width: 180px;
}

.about-badge-num {
    font-size: 2.2rem;
    color: var(--gold-primary);
    font-weight: 800;
    line-height: 1;
}

.about-badge-txt {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.about-content-wrap .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.about-p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-features {
    list-style: none;
    margin-bottom: 36px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-features li svg {
    width: 20px;
    height: 20px;
    fill: var(--gold-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    text-align: center;
    box-sizing: border-box;
}

.quote-icon {
    width: 48px;
    height: 48px;
    fill: var(--gold-primary);
    opacity: 0.3;
    margin: 0 auto 24px auto;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-white);
    font-style: italic;
    margin-bottom: 28px;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-name {
    font-size: 1.15rem;
    color: var(--gold-primary);
    margin-bottom: 4px;
}

.client-role {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.testimonial-arrow {
    background: none;
    border: 1px solid var(--card-border);
    color: var(--text-main);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-arrow:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-glow);
}

/* --- CTA SECTION --- */
.cta-banner {
    position: relative;
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 222, 91, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-banner-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 36px auto;
}

.cta-phone-num {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-weight: 800;
    display: block;
    margin-bottom: 30px;
    text-shadow: 0 0 20px var(--gold-glow-intense);
    transition: var(--transition-smooth);
}

.cta-phone-num:hover {
    color: var(--text-white);
    transform: scale(1.03);
}

/* --- FOOTER --- */
footer {
    background-color: var(--bg-space-dark);
    border-top: 1px solid var(--card-border);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--gold-primary);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 6px;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-info-list svg {
    width: 18px;
    height: 18px;
    fill: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- BREADCRUMBS --- */
.breadcumb-header {
    padding: 160px 0 80px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-space-dark) 0%, var(--bg-space) 100%);
    border-bottom: 1px solid var(--card-border);
}

.breadcumb-title {
    font-size: 3rem;
    margin-bottom: 12px;
}

.breadcumb-links {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcumb-links li {
    color: var(--text-muted);
}

.breadcumb-links a {
    color: var(--text-muted);
}

.breadcumb-links a:hover {
    color: var(--gold-primary);
}

.breadcumb-separator {
    color: var(--card-border);
}

/* --- SERVICE DETAIL PAGES STYLE --- */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 50px;
    align-items: start;
}

.service-main-content h3 {
    font-size: 1.8rem;
    margin: 30px 0 16px 0;
}

.service-main-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.service-main-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Sidebar Widgets */
.sidebar-widget {
    padding: 30px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold-primary);
}

.widget-services-list {
    list-style: none;
}

.widget-services-list li {
    margin-bottom: 12px;
}

.widget-services-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    font-size: 0.95rem;
    font-weight: 500;
}

.widget-services-list li.active a,
.widget-services-list a:hover {
    background: var(--gold-primary);
    color: #101210;
    border-color: var(--gold-primary);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.widget-services-list a svg {
    width: 16px;
    height: 16px;
    fill: var(--text-muted);
    transition: var(--transition-smooth);
}

.widget-services-list li.active a svg,
.widget-services-list a:hover svg {
    fill: #101210;
    transform: translateX(3px);
}

.widget-contact-box {
    text-align: center;
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
}

.widget-contact-box svg.bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 120px;
    height: 120px;
    fill: rgba(255, 222, 91, 0.03);
    pointer-events: none;
}

/* --- CONTACT & REGISTRATION FORM STYLE --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item-card {
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(255, 222, 91, 0.08);
    border: 1px solid rgba(255, 222, 91, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gold-primary);
}

.info-card-detail h5 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.info-card-detail p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-wrapper {
    padding: 40px;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-glow);
    background: rgba(255, 255, 255, 0.05);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    cursor: pointer;
}

.checkbox-group input {
    cursor: pointer;
    accent-color: var(--gold-primary);
    width: 16px;
    height: 16px;
}

.checkbox-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- PAYMENT PAGE LAYOUT --- */
.payment-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.payment-left-card {
    padding: 40px;
}

.payment-left-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.checkout-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.checkout-option-title {
    font-size: 1.1rem;
    color: var(--gold-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Credit Card Mock styling */
.mock-credit-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    color: var(--text-white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    margin-bottom: 24px;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.mock-credit-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,222,91,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.card-chip {
    width: 45px;
    height: 35px;
    background: #ffd700;
    border-radius: 6px;
    margin-bottom: 30px;
    position: relative;
}

.card-number {
    font-size: 1.4rem;
    letter-spacing: 3px;
    font-family: var(--font-heading);
    margin-bottom: 24px;
    word-spacing: 4px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.card-holder-name {
    color: var(--text-white);
    font-weight: 500;
    margin-top: 4px;
}

/* UPI QR Code section */
.upi-qr-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.qr-box {
    background: #ffffff;
    padding: 16px;
    border-radius: 12px;
    display: inline-block;
}

.qr-box svg,
.qr-box img {
    display: block;
    width: 140px;
    height: 140px;
}

.qr-instructions h5 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.qr-instructions p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* Razorpay original widget box wrapper */
.razorpay-integration-widget {
    padding: 30px;
    text-align: center;
    background: rgba(255, 222, 91, 0.03);
    border: 1px dashed rgba(255, 222, 91, 0.3);
}

.razorpay-integration-widget .widget-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.razorpay-integration-widget .widget-logo span {
    color: #3395FF; /* Razorpay blue */
    font-weight: 800;
}

/* Custom Success Modal */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.success-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-modal {
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.success-modal-overlay.active .success-modal {
    transform: translateY(0);
}

.success-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255, 222, 91, 0.1);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    box-shadow: 0 0 20px var(--gold-glow);
}

.success-icon-wrap svg {
    width: 40px;
    height: 40px;
    fill: var(--gold-primary);
}

.success-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.success-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(11, 15, 25, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--card-border);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 50px 30px;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin-top: 10px;
    }
    
    .nav-item:hover .dropdown-menu, .nav-item.active .dropdown-menu {
        max-height: 400px;
        padding: 8px 0;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .slide-title {
        font-size: 2.8rem;
    }
    
    .slide-graphic {
        display: none;
    }
    
    .about-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-grid, .contact-grid, .payment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    header {
        padding: 15px 0;
    }
    
    .logo-link {
        font-size: 1.3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .upi-qr-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* --- ADDED BRANDING & FOOTER STYLES --- */
.logo-symbol {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px var(--gold-glow-intense));
}

.logo-img-nav {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 222, 91, 0.15));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img-nav:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 0 12px rgba(255, 222, 91, 0.25));
}

@media (max-width: 600px) {
    .logo-img-nav {
        height: 38px;
    }
}

.logo-img-footer {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 222, 91, 0.15));
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

