@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:wght@400;700;900&display=swap');

:root {
    --primary-maroon: #6b1313;
    --primary-gold: #d4af37;
    --primary-gold-light: #f4d06f;
    --text-dark: #1a1a1a;
    --text-white: #2c2c2c; /* Redefined to dark for light theme */
    --text-light: #ffffff; /* Genuine white for footer/specifics */
    --bg-dark: #faf9f6; /* Redefined to cream/light for main bg */
    --bg-maroon-dark: #3a0b0b;
    --glass-bg: rgba(255, 255, 255, 0.85); /* Solidified white */
    --glass-border: rgba(212, 175, 55, 0.3); /* Softer gold edge */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Celestial Orbs Background */
.celestial-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 15s infinite ease-in-out alternate;
}

.orb-1 { width: 400px; height: 400px; background: rgba(212, 175, 55, 0.2); top: -100px; left: -100px; }
.orb-2 { width: 500px; height: 500px; background: rgba(244, 208, 111, 0.3); bottom: -150px; right: -100px; animation-delay: -5s; }
.orb-3 { width: 300px; height: 300px; background: rgba(107, 19, 19, 0.1); top: 50%; left: 50%; transform: translate(-50%, -50%); animation-duration: 20s; }

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

h1, h2, h3, .logo-text {
    font-family: 'Playfair Display', serif;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
}

.glass-dark {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

nav.scrolled {
    padding: 1rem 5%;
    background: rgba(250, 249, 246, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-maroon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(to right, var(--primary-maroon), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.lang-selector {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--primary-maroon);
    color: var(--primary-maroon);
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.lang-btn.active, .lang-btn:hover {
    background: var(--primary-maroon);
    color: #fff;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(15, 15, 15, 0.6), rgba(15, 15, 15, 0.8)), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--primary-maroon);
}

.gold-text {
    background: linear-gradient(135deg, var(--primary-gold), #b8912d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #444;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #c19a2c);
    color: var(--bg-dark);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 0 5%;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(250, 249, 246, 0.75), rgba(250, 249, 246, 0.9));
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 1;
    animation: subtleZoom 10s forwards;
}

@keyframes subtleZoom {
    0% { background-size: 100% auto; }
    100% { background-size: 110% auto; }
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* Remedies Cards */
.remedies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.remedy-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.remedy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.remedy-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.remedy-body {
    padding: 1.5rem;
    flex-grow: 1;
    color: var(--text-dark);
}

.remedy-badge {
    color: var(--primary-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.remedy-body h3 {
    color: var(--primary-maroon);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.remedy-body p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.remedy-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 1.5rem 1.5rem;
}

.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.btn-wa {
    background: #25D366;
    color: #fff;
}

.btn-call {
    background: #e67e22;
    color: #fff;
}

.btn-action:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    background: var(--glass-bg);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    background: rgba(212, 175, 55, 0.1);
}

.accordion-header h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--primary-maroon);
}

.accordion-icon {
    font-size: 1.2rem;
    color: var(--primary-maroon);
    transition: var(--transition-smooth);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background: rgba(212, 175, 55, 0.05);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 1.5rem;
    color: #444;
}

/* Authority Banner */
.authority-banner {
    background: linear-gradient(135deg, var(--primary-maroon), #220000);
    padding: 2.5rem 5%;
    border-top: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.authority-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 2;
}

.authority-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.authority-text h4 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.authority-text p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

/* Testimonial Section Refresh */
.testimonial-section {
    padding: 100px 5%;
    background: #ffffff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2.5rem;
    position: relative;
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    background: var(--glass-bg);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-gold);
    opacity: 0.1;
    font-family: serif;
}

.client-info {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-name {
    font-weight: 700;
    color: var(--primary-gold);
}

.client-location {
    font-size: 0.8rem;
    color: #666;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(107, 19, 19, 0.9), rgba(107, 19, 19, 0.95)), url('images/hero-bg.png');
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 80px 5%;
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-item p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    z-index: -1;
}

/* Footer & Contact */
footer {
    padding: 80px 5% 40px;
    background: var(--bg-maroon-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo .logo-text {
    font-size: 2rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Why Choose Us Section */
.why-choose {
    padding: 100px 5%;
    background: var(--bg-dark);
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.why-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: var(--transition-smooth);
}

.why-image-wrapper:hover img {
    transform: scale(1);
}

.why-image-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 208, 111, 0.2), transparent);
}

.why-stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.why-stat-item {
    flex: 1 1 200px;
    padding: 1.5rem;
    border-radius: 15px;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
}

.why-stat-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.why-stat-item i {
    font-size: 1.5rem;
    color: var(--primary-maroon);
    margin-bottom: 0.8rem;
    display: block;
}

.why-stat-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--primary-maroon);
}

.why-stat-item p {
    font-size: 0.8rem;
    color: #666;
}

.why-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-maroon);
}

.why-content p {
    color: #444;
    margin-bottom: 2.5rem;
}

/* Global Utilities */
.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 1rem auto 2rem;
    position: relative;
}

.divider::after {
    content: '✨';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    color: var(--primary-gold);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Sacred Services Section */
.services {
    padding: 100px 5%;
    background: var(--bg-dark);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 300px;
    padding: 2.5rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card p {
    flex-grow: 1;
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Global Expertise Section */
.global-reach {
    padding: 100px 5%;
    background: var(--bg-dark);
    text-align: center;
}

.global-reach .section-header .divider {
    margin: 1.5rem auto;
}

.global-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
}

.global-card {
    flex: 1 1 250px;
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(107, 19, 19, 0.1));
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.global-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(107, 19, 19, 0.5), 0 0 15px rgba(212, 175, 55, 0.2);
}

.global-card:hover i {
    transform: scale(1.1);
}

.global-card i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(107, 19, 19, 0.4), 0 0 20px rgba(212, 175, 55, 0.15);
}

.service-card:hover .service-icon {
    transform: scale(1.1) translateY(-5px);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 1.5rem;
}

.btn-service {
    padding: 8px 5px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: var(--transition-smooth);
}

.btn-service.wa { background: #25D366; color: #fff; }
.btn-service.call { background: #e67e22; color: #fff; }

.btn-service:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.global-card p {
    font-size: 0.85rem;
    color: #888;
}

/* Specialized Solutions (Catalog) */
.specialized-catalog {
    padding: 100px 5%;
    background: var(--bg-dark);
}

.solutions-list-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.solution-box {
    flex: 1 1 300px;
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #fdfdfd);
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.solution-box ul {
    list-style: none;
}

.solution-box li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #555;
}

.solution-box li i {
    color: var(--primary-gold);
    font-size: 0.8rem;
}

.solution-box li:last-child {
    border-bottom: none;
}

.solution-box h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-maroon);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quick Problems Banner */
.quick-problems {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.problem-tile {
    flex: 1 1 150px;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
}
.tile-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(58, 11, 11, 0.8), rgba(212, 175, 55, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition-smooth);
}
.problem-tile:hover .tile-overlay {
    background: linear-gradient(to bottom, rgba(58, 11, 11, 0.6), rgba(212, 175, 55, 0.6));
}
.tile-overlay i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}
.tile-overlay h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    text-align: center;
    padding: 0 10px;
}

/* Other Astrology Services */
.other-services {
    padding: 100px 5%;
    background: #0a0a0a;
}
.other-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}
.other-card {
    flex: 1 1 300px;
    background: #151515;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}
.other-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: var(--primary-gold);
}
.other-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.other-card .card-content {
    padding: 1.5rem;
}
.other-card .card-content h3 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.other-card .card-content p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.btn-orange {
    background: #e67e22;
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    padding: 8px 20px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}
.btn-orange:hover {
    background: #d35400;
}

/* Famous Services List */
.famous-services-container {
    width: 100%;
}
.famous-list-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    background: #e67e22;
    padding: 2.5rem;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}
.famous-list {
    flex: 1 1 280px;
    list-style: none;
}
.famous-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 0.95rem;
    color: #fff;
    display: flex;
    align-items: center;
}
.famous-list li:last-child {
    border-bottom: none;
}
.famous-list li i {
    font-size: 0.8rem;
    margin-right: 12px;
}

/* SEO About Content */
.seo-about {
    padding: 80px 10%;
    background: #fff;
    color: #444;
}
.seo-about h2 {
    color: var(--primary-maroon);
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.seo-about p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Country Pills */
.country-pill {
    background: rgba(107, 19, 19, 0.07);
    border: 1px solid rgba(107, 19, 19, 0.2);
    color: var(--primary-maroon);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    cursor: default;
}

.country-pill:hover {
    background: var(--primary-maroon);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 19, 19, 0.2);
}

/* Awards & Achievements Section */
.awards-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--primary-maroon), #220000);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: rotateAura 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateAura {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.awards-section .section-header h2 {
    color: var(--primary-gold);
}

.awards-section .section-header p {
    color: rgba(255, 255, 255, 0.65);
}

.awards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.award-item {
    flex: 1 1 200px;
    max-width: 240px;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.award-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.15);
}

.award-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), #b8912d);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.award-badge i {
    font-size: 1.8rem;
    color: #fff;
}

.award-item h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.award-item p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

/* Religion Banner */
.religion-banner {
    background: linear-gradient(135deg, var(--primary-maroon), #6b1313);
    padding: 1.5rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
    border-top: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
}

.religion-banner span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.religion-banner span i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.religion-headline {
    color: var(--primary-gold) !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem !important;
    font-style: italic;
}

/* Floating Sticky CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-gold), #b8912d);
    color: var(--bg-maroon-dark);
    text-decoration: none;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 999;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    transition: var(--transition-smooth);
    animation: pulseCta 2.5s infinite ease-in-out;
    max-width: 180px;
    line-height: 1.4;
}

.floating-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.7);
}

.floating-cta-line1 {
    font-size: 0.9rem;
    font-weight: 600;
}

.floating-cta-line2 {
    font-size: 0.85rem;
    font-weight: 600;
}

.floating-cta-call {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    background: var(--primary-maroon);
    color: var(--primary-gold);
    padding: 4px 12px;
    border-radius: 20px;
}

@keyframes pulseCta {
    0%, 100% { box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5); }
    50% { box-shadow: 0 8px 50px rgba(212, 175, 55, 0.8); }
}

/* Responsive (Must remain at the bottom of the file) */
@media (max-width: 968px) {
    body, html { overflow-x: hidden; }
    .nav-links { display: none; }
    .hero h1 { font-size: 3rem; }
    .about-container, .footer-content, .why-container { grid-template-columns: 1fr; }
    .why-content h2 { font-size: 2.5rem; }
    .famous-list-grid { overflow: hidden; }
    .seo-about { padding: 40px 5%; }
    .stats-section { padding: 40px 5%; gap: 1.5rem; flex-direction: column; }
}

@media (max-width: 500px) {
    .hero h1 { font-size: 2.2rem; }
    .stat-item h3 { font-size: 2.5rem; }
    /* Mobile Navbar Tweaks */
    .wa-text { display: none; } /* Hide 'Chat' text on very small screens to fit the logo */
    .nav-wa-btn { padding: 8px !important; border-radius: 50% !important; gap: 0 !important; }
    .logo-text { font-size: 1.1rem; }
    /* Let the flex containers handle stacking automatically */
    .services-grid, .other-grid, .global-grid, .solutions-list-grid { flex-direction: column; overflow: hidden; }
}
