:root {
    --color-primary: #FFC107;
    /* Gold/Yellow */
    --color-primary-dark: #e0a800;
    --color-bg: #0a0a0a;
    /* Deep Black */
    --color-bg-card: #111111;
    --color-text: #ffffff;
    --color-text-muted: #aaaaaa;
    --color-accent-blue: #007bff;
    /* Blue glow */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Only on body */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

body {
    background-color: transparent;
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--color-text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #000;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--color-primary);
    color: #000;
    padding: 8px 0;
    font-size: 0.95rem;
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    /* Not sticky, scrolls with page */
    z-index: 1001;
}

.scrolling-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 25s linear infinite;
    will-change: transform;
}

.scrolling-text span {
    display: inline-block;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Header */
/* Header & Navigation */
header {
    background-color: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Thin border */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--color-primary);
    /* Gold hover effect */
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary);
}

.mobile-only {
    display: none;
}

/* Mobile Menu Media Query */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hidden by default on mobile */
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.95);
        padding: 20px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        max-height: 80vh;
        /* Prevent overflow if menu is long */
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
        /* Shown when toggled */
    }

    .hamburger {
        display: block;
        /* Visible on mobile */
    }

    .nav-actions {
        display: none;
        /* Hide desktop actions on mobile */
    }

    .mobile-only {
        display: block;
        /* Show mobile specific items */
    }
}

/* Hero Section */
.hero {
    /* Removed background image to show Night Sky */
    background: transparent;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    padding-right: 50px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h2.gold-text {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ddd;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.circle-image-glow {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--color-primary);
    box-shadow: 0 0 50px rgba(255, 193, 7, 0.3);
    animation: float 6s ease-in-out infinite;
    will-change: transform;
    background-color: #111;
    /* Fallback if image missing */
    flex-shrink: 0;
    /* Prevent shrinking */
}

.circle-image-glow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%;
    /* Ensure content fills */
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Services Section */
.stats-section {
    background-color: rgba(17, 17, 17, 0.4);
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.stat-item span {
    font-size: 3rem;
    color: var(--color-primary);
    font-weight: 700;
}

.stat-item p {
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-section {
    padding: 80px 0;
    background-color: transparent;
    /* Show Sky */
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    /* Flex to handle content */
    flex-direction: column;
    align-items: center;
    height: 100%;
    /* Ensure full height for grid alignment */
}

.service-image {
    width: 100%;
    min-height: 200px;
    /* Fallback height */
    background-color: #222;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-accent-blue);
}

.service-card:hover::before {
    background: var(--color-primary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--color-primary);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 0.95rem;
    flex-grow: 1;
    /* Allow text to take space but push buttons down */
}

.card-actions {
    margin-top: auto;
    /* Push to bottom */
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.8rem;
    border-radius: 5px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-call {
    background-color: var(--color-primary);
    color: black;
}

.btn-call:hover {
    background-color: var(--color-primary-dark);
}

/* Profile Section */
.profile-section {
    padding: 100px 0;
    background-color: transparent;
    /* Show Sky */
}

.profile-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.profile-image img {
    border-radius: 15px;
    /* Soft rounded corners instead of circle */
    border: 3px solid var(--color-primary);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
    max-width: 100%;
    /* Responsive width */
    height: auto;
    /* Maintain aspect ratio */
    width: auto;
    object-fit: contain;
    /* Ensure full image is visible */
    max-height: 500px;
    /* Limit height if needed */
    display: block;
}

.profile-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.profile-text p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: transparent;
    /* Show Sky */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #151515;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.feature-box h3 {
    margin-bottom: 10px;
}

.feature-box p {
    color: #aaa;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: transparent;
    /* Show Sky */
    text-align: center;
    contain: content;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px 20px;
    background: rgba(21, 21, 21, 0.7);
    /* Glass effect */
    border-radius: 15px;
    border: 1px solid #333;
    backdrop-filter: blur(5px);
}

.testimonial-slide {
    display: none;
    animation: fadeEffect 1s;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 2px solid var(--color-primary);
}

.testimonial-slide p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.testimonial-slide h4 {
    color: var(--color-primary);
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slider-controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.slider-controls button {
    background: transparent;
    border: 1px solid #555;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-controls button:hover {
    background: var(--color-primary);
    color: black;
    border-color: var(--color-primary);
}

/* Footer CTA */
.footer-cta {
    padding: 80px 0;
    background: transparent;
    /* Show Sky */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.cta-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--color-primary);
    display: inline-block;
    margin-top: 30px;
    max-width: 600px;
    width: 100%;
}

.phone-number {
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 700;
    margin: 15px 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background-color: rgba(5, 5, 5, 0.8);
    /* Semi-transparent */
    padding: 60px 0 20px;
    border-top: 1px solid #222;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #111;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Final Tweaks */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2.gold-text {
        font-size: 1.8rem;
    }

    .circle-image-glow {
        width: 300px;
        height: 300px;
        margin-top: 30px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
    }

    .profile-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-image img {
        width: 250px;
        height: 250px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        text-align: center;
    }
}

/* Floating Action Buttons */
.float-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.float-whatsapp {
    left: 30px;
    background-color: #25d366;
}

.float-call {
    right: 30px;
    background-color: var(--color-primary);
    color: #000;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
    }

    .float-whatsapp {
        left: 20px;
    }

    .float-call {
        right: 20px;
    }
}

/* Stats Section */
.stats-section {
    background-color: rgba(17, 17, 17, 0.7);
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

/* ... Stats Grid ... */

.stat-item h3 {
    font-size: 3rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

/* ... */

/* FAQ Styles */
.faq-section {
    background-color: transparent;
    /* Show Sky */
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(26, 26, 26, 0.4);
    /* More transparent card */
    margin-bottom: 15px;
    border-radius: 10px;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}



.faq-item:hover {
    border-color: var(--color-primary);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #222;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

.faq-question i {
    color: var(--color-primary);
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    background: #1a1a1a;
}

.faq-answer p {
    padding: 20px 0;
    color: #ccc;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Approximate height */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Premium Animations */

/* Gold Shimmer Text */
.gold-text {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    display: inline-block;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Floating Button Pulse */
.float-btn {
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

.float-whatsapp {
    animation: pulse-shadow-green 2s infinite;
}

@keyframes pulse-shadow-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Service Card Glow Hover */
.service-card {
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

/* Live Dot Indicator */
/* Time Bar & Clock Removed */

/* CSS Emoji Removed - Handled by JS */

@media (max-width: 768px) {
    /* Removed live-clock-badge and time-bar styles */
}

.live-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background-color: #ff0000;
    border-radius: 50%;
    border: 2px solid white;
    z-index: 10001;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.live-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #ff0000;
    border-radius: 50%;
    animation: live-pulse 1.5s infinite;
    z-index: -1;
}

/* Night Sky Background */
#night-sky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(to bottom, #020111 0%, #111 100%);
    overflow: hidden;
    pointer-events: none;
    /* Allow clicks to pass through */
}

/* Moon */
.moon {
    position: absolute;
    top: 20px;
    /* Higher up */
    left: 50%;
    /* Center horizontally */
    transform: translateX(-50%);
    width: 60px;
    /* Slightly smaller to fit nicely */
    height: 60px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 30px #fff, 0 0 60px #ffd700;
    /* Glow */
    opacity: 0.9;
    z-index: -1;
    /* Behind content but in front of sky bg */
}

.moon::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 15%;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

/* Stars */
.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle infinite alternate;
}

@keyframes twinkle {
    0% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Birds (SVG) */
.bird {
    position: absolute;
    width: 40px;
    /* Base size */
    height: 20px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

.bird svg path {
    animation: wing-flap-svg 0.8s infinite alternate ease-in-out;
    transform-origin: center;
}

@keyframes wing-flap-svg {
    0% {
        d: path("M5 35 Q 25 5 50 35 Q 75 5 95 35");
        transform: translateY(0);
    }

    100% {
        d: path("M5 15 Q 25 5 50 15 Q 75 5 95 15");
        transform: translateY(-10px);
    }
}

@keyframes fly-left {
    0% {
        transform: translateX(110vw) translateY(0) scaleX(1);
    }

    100% {
        transform: translateX(-10vw) translateY(50px) scaleX(1);
    }
}

@keyframes fly-right {
    0% {
        transform: translateX(-10vw) translateY(0) scaleX(-1);
    }

    100% {
        transform: translateX(110vw) translateY(50px) scaleX(-1);
    }
}

@keyframes floatOwl {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}


@keyframes live-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}