/* 
   Premium Design System: "Royal Authority" (Sohini Style)
   Created for Dr. Mararji
*/

:root {
    /* Colors */
    --primary-bg: #FFFFFF; /* White */
    --secondary-bg: #F9F9F9; /* Very light grey/cream for sections */
    --accent-gold: #de8d37; 
    --accent-gold-hover: #7a5a38;
    --accent-dark: #484731; 
    --text-primary: #181712; /* Dark Charcoal */
    --text-secondary: #555555; /* Medium Grey */
    --glass-bg: #FFFFFF; /* Solid white for cards in light mode */
    --border-color: #E5E5E5;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing */
    --section-spacing: 50px;
    --container-width: 1200px;
}

/* Global Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #de8d37;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-spacing {
    padding: var(--section-spacing) 0;
}

.text-center { text-align: center; }
.text-gold { color: #de8d37; }

/* Buttons */
.theme-btn {
    display: inline-block;
    padding: 10px 20px;
    color: #000;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px; 
    border: 2px solid var(--accent-gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    background-color: transparent;
    color: var(--accent-dark);
    transform: translateY(-2px);
}

/* Header & Nav */
.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 5px 0;
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.main-nav a:hover,
.main-nav a.active {
    color: #de8d37;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-contact {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.header-contact a {
    color: var(--text-primary);
}

.hero-section-sastri {
    position: relative;
    background-color: #FFF; 
    padding-top: 100px; 
    padding-bottom: 80px;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 60px 1fr 1fr; 
    gap: 40px;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Vertical Text */
.hero-vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--text-secondary);
    text-transform: uppercase;
    border-left: 1px solid #de8d37; 
    padding-left: 15px;
    height: 300px;
    display: flex;
    align-items: center;
}

/* Left Content */
.hero-content-left {
    padding-right: 20px;
}

.hero-title {
    font-size: 3rem; 
    font-family: var(--font-heading);
    /* color: var(--accent-gold); */
    color: #de8d37;
    line-height: 1.1;
    font-weight: 400; 
    margin-bottom: 20px;
}

.hero-title br {
    display: block;
}

.hero-name {
    font-size: 2.2rem;
    color: var(--accent-dark); 
    font-weight: 700;
    font-style: italic;
    font-family: var(--font-heading);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-olive {
    background-color: var(--accent-dark);
    color: #FFF;
    border: none;
    padding: 15px 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-olive:hover {
    background-color: #de8d37;
    color: #FFF;
    transform: translateY(-2px);
}

.call-link {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-primary);
    position: relative;
}

.call-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.call-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Right Image */
.hero-image-right {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.image-wrapper {
    position: relative;
    max-width: 500px;
}

.astrologer-img {
    border-radius: 4px; 
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 20px 20px 0px rgba(147, 109, 69, 0.1);
}

.zodiac-wheel {
    position: absolute;
    bottom: -50px;
    right: -50px;
    animation: rotate 60s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-vertical-text {
        display: none;
    }
    .hero-content-left {
        padding: 0 20px;
        order: 2;
    }
    .hero-image-right {
        order: 1;
        justify-content: center;
        margin-bottom: 40px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-title {
        font-size: 3rem;
    }
    .zodiac-wheel {
        width: 100px;
        right: 0;
    }
    .zodiac-wheel i {
         font-size: 8rem !important;
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 70px; 
    position: relative;
    padding-bottom: 25px;
}

/* Elegant Underline for Titles */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

.section-title h2 {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--accent-gold);
    display: inline-block;
    padding-bottom: 0;
    border-bottom: none; 
    font-weight: 600;
    letter-spacing: 0.5px;
}

.services-section {
    background-color: #FFFFFF; 
    padding-top: 20px;
}

.services-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    grid-template-columns: 1.5fr 1.5fr 1.5fr;
    gap: 30px;
}

.service-card {
    background: #FFFFFF;
    padding: 20px 25px;
    border: 1px solid rgba(222, 141, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); 
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);                                                                     
    box-shadow: 0 20px 40px rgba(222, 141, 55, 0.15); 
    border-color: rgba(222, 141, 55, 0.5);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h4 {
    color: var(--text-primary);
    font-size: 1.3rem; 
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 15px;
}

@media (max-width:768px){
    .service-grid{
        grid-template-columns: 1.5fr 1.5fr;
    }
    .service-card{
        padding: 10px 15px;
    }
    .service-card h4{
        font-size: 1.7rem;
    }
}
@media (max-width:480px){
    .service-grid{
        grid-template-columns: 1fr;
    }
}

/* Why Choose Us - Enhanced */
.why-choose-us {
    background-color: #FAFAFA; 
}

.single-feature {
    padding: 40px 30px;
    border: 1px solid rgba(0,0,0,0.03); 
    border-radius: 8px; 
    transition: all 0.4s ease;
    background: #FFF;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.single-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(222, 141, 55, 0.12); /* Classy glow */
    border-color: var(--accent-gold);
}

.single-feature .title {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-top: 15px;
    margin-bottom: 10px;
}

.single-feature p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7; /* Breathable text */
}

/* Footer (Brand Color Match) */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.premium-footer {
    background-color: #2F2E25; 
    color: #FFF;
    padding-top: 60px;
    padding-bottom: 20px;
    border-top: 5px solid var(--accent-gold);
}

.footer-col h5 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-links li, 
.footer-col p {
    color: #E0E0E0; 
    font-size: 0.95rem;
}
.footer-links li{
    margin-bottom: 10px;
}

.footer-links li a{
    color: #eee;
    font-size: 16px;
}

.footer-links li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}
.footer-links li i{
    font-size: 19px;
    padding-right: 5px;
}

.social-links a {
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 30px;
    height: 30px;
    font-size: 1rem;
    text-align: center;
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: #FFF;
    border-color: var(--accent-gold);
    letter-spacing: 1px;
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
.copyright p{
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 10px;
}
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid #FFF;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    color: #FFF;
}

.whatsapp-float {
    background-color: #25D366;
}

.call-float {
    background-color: var(--accent-gold); /* Brand match */
}

/* Mobile adjust */
@media (max-width: 576px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 20px;
    color: var(--accent-gold);
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
}

/* --- Responsive Media Queries --- */
@media (max-width: 991px) {
    :root {
        --section-spacing: 60px;
    }
    
    .premium-header {
        padding: 10px 0;
    }

    .header-inner {
        padding: 0 15px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .logo img {
        /* height: 60px; */
        width: 100%;
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 24px;
        color: #de8d37;
        cursor: pointer;
        padding: 0 10px;
        border: 1px solid #de8d37;
        transition: color 0.3s;
    }
    
    .mobile-menu-toggle:hover {
        color: var(--accent-gold);
    }

    /* Header Right (Nav Container) */
    .header-right {
        width: 100%;
        order: 3; /* Force to next line */
        margin-top: 0;
        display: flex; /* Flex to contain nav */
        flex-direction: column;
    }
    
    .header-contact {
        display: none; 
    }

    .main-nav {
        display: none; 
        width: 100%;
        background-color: var(--primary-bg);
        margin-top: 15px;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    
    .main-nav.active {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 10px 0;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid #f9f9f9;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        display: block;
        padding: 12px 20px;
        text-align: left;
        font-size: 16px;
        color: var(--text-primary);
    }

    .main-nav a:hover,
    .main-nav a.active {
        background-color: #fcfcfc;
        color: var(--accent-gold);
        padding-left: 25px; /* Slight indent on hover */
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Hero Section Mobile */
    .hero-section-sastri {
        padding-top: 100px; /* Reduced since header doesn't overlap as much or is smaller */
        padding-bottom: 60px;
        height: auto;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr; /* Stack everything */
        text-align: center;
        gap: 30px;
    }
    
    .hero-vertical-text {
        display: none; /* Hide vertical text on mobile */
    }
    
    .hero-content-left {
        padding: 0;
        order: 1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-name {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image-right {
        order: 2;
        justify-content: center;
        margin-top: 20px;
    }
    
    .image-wrapper {
        max-width: 100%;
    }
    
    .zodiac-wheel {
        width: 80px;
        right: -10px;
        bottom: -20px;
    }
    
    .services-grid, 
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .footer-col {
        text-align: left;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Mobile Small */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section-sastri {
        padding-top: 120px; 
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .btn-olive {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Inner Banner */
.theme-inner-banner {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 80px; /* Header offset */
}

.theme-inner-banner .overlay {
    background: rgba(255, 255, 255, 0.7); /* Light overlay for inner pages too */
    padding: 40px 60px;
    border: 2px solid var(--accent-gold);
}

.theme-inner-banner h2.title {
    font-size: 3rem;
    color: var(--text-primary);
    margin: 0;
}

/* Specific Page Styles */

/* Blogs */
.blog-card {
    background: #FFF;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.blog-card:hover {
    border-color: var(--accent-gold);
}

.single-blog-meta {
    background: #FFF;
    border: 1px solid var(--border-color);
}

.single-blog-meta .title a {
    color: var(--accent-gold);
}

/* Contact Form */
.theme-form-one input,
.theme-form-one textarea {
    background-color: #FAFAFA;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.theme-form-one input:focus,
.theme-form-one textarea:focus {
    border-color: var(--accent-gold);
    background-color: #FFF;
}

.contact-us-page .address i {
    color: var(--accent-gold);
}

.contact-us-page .address p {
    color: var(--text-secondary);
}

/* Google Map */
.google-map {
    border: 2px solid var(--accent-gold);
    border-radius: 4px; /* Sharper */
    filter: none; /* No grayscale for light theme */
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Missing Components --- */

/* Astrologer Section */
.astrologe-section {
    padding: 80px 0;
    text-align: center;
    background-color: #FFF;
}

.astrologe-section h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    display: inline-block;
    padding-bottom: 10px;
}

.astrologe-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    position: relative;
    background: var(--secondary-bg);
}

.faq-section .title {
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 40px;
}

.panel-group .panel {
    background-color: transparent;
    border: none;
    margin-bottom: 15px;
}

.panel-heading {
    background-color: #FFF; /* White cards */
    border-radius: 4px;
    padding: 15px 25px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.panel-heading.active-panel {
    border-color: var(--accent-gold);
    background-color: #FFF;
}

.panel-title a {
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 700;
    display: block;
    font-size: 1.1rem;
}

.panel-title a:hover {
    color: var(--accent-gold);
}

.panel-body {
    background-color: #FFF;
    color: var(--text-secondary);
    padding: 20px 25px;
    border: 1px solid var(--border-color);
    border-top: none;
    margin-top: -5px; /* connect to header */
}

/* Videos / Project Details */
.project-details .img-box,
.single-blog-meta .img-box {
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

.project-details .img-box img,
.single-blog-meta .img-box iframe {
    width: 100%;
    display: block;
}

/* Helper for list items in details */
.list-text li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.list-text li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}


/* CTA SECTION - Polished */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/cta.jpg') no-repeat center center/cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
    /* Smart Fallback if image fails */
    background-color: #1a1a1a; 
}

/* Removed ::before as the linear-gradient handles opacity cleanly now */

.cta-content {
    max-width: 900px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.2); /* Very subtle frame content */
    backdrop-filter: blur(2px); /* Modern touch */
}

.cta-content h1 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 400;
    color: #fff; 
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

  .cta-content p {
    font-size: 1.2rem;
    color: #eee;
    margin-bottom: 25px;
  }

  .cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #fff;
    color: var(--accent-gold); 
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .cta-btn:hover {
    background-color: var(--accent-gold-hover);
    color: #fff;
  }

  @media (max-width: 768px) {
    .cta-content h1 { font-size: 2rem; }
    .cta-content p { font-size: 1rem; }
  }

  @media (max-width: 480px) {
    .cta-content h1 { font-size: 1.5rem; }
    .cta-content p { font-size: 0.9rem; }
    .cta-btn { padding: 10px 20px; }
  }

  /* ABOUT PAGE */
.astro-journey {
  width: 100%;
  padding: 100px 20px;
  background-color: #ffffff;
}
.astro-container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}
.astro-image {
  flex: 1;
}
.astro-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}
.astro-content {
  flex: 1;
}
.astro-content h1 {
  font-size: 40px;
  font-weight: 600;
  color: var(--accent-gold); 
  line-height: 1.2;
  margin-bottom: 20px;
}
.astro-content .quote {
  font-size: 30px;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .astro-journey{
    padding: 110px 20px 50px;
  }
  .astro-container{
    padding: 0;
    gap: 30px;
  }
  .astro-content h1 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .astro-container {
    flex-direction: column;
    text-align: center;
  }
  .astro-content {
    text-align: left;
  }
  .astro-content h1 {
    font-size: 31px;
  }
  .astro-content .quote {
    font-size: 18px;
  }
}

/* --- PREMIUM LAYOUT STYLES (Light Royal Split) --- */

.hero-premium {
    position: relative;
    min-height: 85vh; 
    display: flex;
    align-items: center; 
    padding: 120px 0 80px; 
    background: #FFFAF4; 
    overflow: hidden;
}

@media (max-width:1024px){
  .hero-premium{
    min-height: 60vh;
  }
}

.hero-premium::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(222, 141, 55, 0.03) 100%);
    z-index: 0;
}
.hero-text-col {
    position: relative;
    z-index: 5;
    padding-right: 20px;
}
.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(222, 141, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}
.hero-title-split {
    font-size: 3.5rem;
    line-height: 1.1;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 700;
}
.highlight-gold {
    color: var(--accent-gold);
    font-weight: 400;
}
@media(max-width:498px){
    .hero-title-split{
        font-size: 3rem;
    }
}
.hero-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 500px;
}
.btn-group-left {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}
@media(max-width:498px){
    .btn-group-left{
        flex-direction: column;
        align-items:start;
    }
}

.btn-text-only {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
.btn-text-only:hover { color: var(--accent-gold); }

.hero-img-col {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 500px;
    height: auto;
}
.zodiac-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(222, 141, 55, 0.3);
    border-radius: 50%;
    animation: rotateSlow 60s linear infinite;
    z-index: -1;
}
.zodiac-ring::before {
    content: '';
    position: absolute;
    top: -10px; left: 50%;
    width: 20px; height: 20px;
    background: var(--accent-gold);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px var(--accent-gold);
}
.hero-main-img {
    width: 100%;
    max-height: 700px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
.floating-experience-card {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: #FFF;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--accent-gold);
    animation: float 4s ease-in-out infinite;
}
.exp-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}
.exp-text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    text-align: left;
}
@keyframes rotateSlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stats-bar {
    background-color: var(--accent-gold-hover);
    padding: 40px 0;
    position: relative;
    z-index: 20;
    margin-top: -80px; /* Overlap effect */
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.stat-item {
    text-align: center;
    color: #FFF;
    border-right: 1px solid rgba(255,255,255,0.1);
    margin: 10px auto;
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.8;
}

/* 3. Meet the Astrologer (Split Layout) */
.about-split-section {
    padding: 100px 0;
    background-color: #FFF;
    position: relative;
}

.about-img-box {
    position: relative;
    padding-right: 30px;
}

.about-img-box img {
    border-radius: 4px;
    box-shadow: 30px 30px 0 var(--secondary-bg);
}

.about-content-box {
    padding-left: 10px;
}

.about-content-box h2 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.about-content-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}


/* --- TESTIMONIALS SECTION (Voices of Transformation) --- */
.testimonials-section {
    background-color: #FAFAFA;
    position: relative;
    overflow: hidden;
}

/* Optional Background Decor */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50px; left: -50px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(222, 141, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testi-card {
    background: #FFF;
    padding: 40px 30px;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 8px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.testi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(222, 141, 55, 0.1);
    border-color: rgba(222, 141, 55, 0.3);
}

.testi-quote-icon {
    font-size: 3rem;
    color: rgba(222, 141, 55, 0.2);
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: serif; /* Classic quote look */
}

.testi-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    border: 2px solid var(--accent-gold);
}

.testi-meta h5 {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    margin-bottom: 3px;
    color: var(--text-primary);
    font-weight: 700;
}

.testi-meta span {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testi-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.rating-stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* ABOUT SECTION */
.about-section {
  padding: 50px 20px;
  background-color: #f4f3f1;
}
.about-container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
}
.about-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}
.about-brand {
  margin-bottom: 15px;
}
.about-content h2 {
  font-size: 32px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: var(--accent-gold);
}
.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}
.about-content .highlight {
  font-weight: 600;
  line-height: 2;
}
.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.about-btn:hover {
  background-color: #000;
  color: #fff;
}
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-brand .name {
    font-size: 30px;
  }

  .about-content h2 {
    font-size: 24px;
  }
}

/* --- PREMIUM BLOG PAGE STYLES --- */
.blog-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.blog-card-premium {
    background: #FFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--accent-gold);
}
.blog-thumb {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card-premium:hover .blog-thumb img {
    transform: scale(1.1);
}
.blog-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-meta {
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-meta i {
    color: var(--accent-gold);
    margin-right: 5px;
}
.blog-content h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}
.blog-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1; 
}

@media (max-width: 991px) {
    .blog-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blog-grid-premium {
        grid-template-columns: 1fr;
    }
}

/* PROJECTS PAGE - PREMIUM ACCORDION */
.premium-accordion-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.premium-acc-item {
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 0;
}
.premium-acc-item:first-child {
    border-top: 1px solid #E5E5E5;
}
.premium-acc-header {
    margin: 0;
}
.premium-acc-btn {
    width: 100%;
    text-align: left;
    background: #FFF;
    border: none;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
}
.premium-acc-btn:hover,
.premium-acc-btn:not(.collapsed) {
    background-color: #FFFAF4; 
}
.acc-num {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-right: 20px;
    opacity: 0.7;
}
.acc-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--text-primary);
    font-weight: 600;
    flex-grow: 1;
}
.premium-acc-btn:not(.collapsed) .acc-title {
    color: var(--accent-gold);
}
.acc-icon {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}
.acc-icon i{
    font-size: 16px;
    font-weight: 500;
}

.premium-acc-btn:not(.collapsed) .acc-icon {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #FFF;
    transform: rotate(45deg); /* Plus to X */
}

.premium-acc-body {
    padding: 30px 40px 40px 50px; 
    background-color: #FFFAF4;
    border-bottom: 2px solid var(--accent-gold); 
}

.acc-content h4 {
    font-size: 1.2rem;
    color: var(--accent-dark);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.acc-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}
.acc-content strong {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .premium-acc-btn {
        padding: 20px;
    }
    .acc-num {
        display: none; /* Hide number on mobile to save space */
    }
    .acc-title {
        font-size: 1.1rem;
    }
    .premium-acc-body {
        padding: 20px;
    }
    .acc-img {
        margin-bottom: 20px;
        height: auto;
    }
}

/* PAGE BANNER - ENHANCED */
.page-banner {
  position: relative;
  width: 100%;
  height: 500px; 
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease-out;
}

.page-banner:hover .banner-img {
    transform: scale(1.05);
}

.page-banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(222, 141, 55, 0.85),
    rgba(184, 115, 45, 0.5)
  );
  z-index: 1;
}

.page-banner .content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  backdrop-filter: blur(2px);
  max-width: 600px;
  width: 100%;
  opacity: 0;
  animation: bannerFadeUp 1s ease-out forwards;
}

@keyframes bannerFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.page-banner h1 {
  color: #ffffff;
  font-size: 4rem;
  letter-spacing: 8px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  .page-banner {
    height: 350px;
  }
  .page-banner h1 {
    font-size: 3.5rem;
    margin-top: 80px;
    letter-spacing: 2px;
  }
  .page-banner .content {
      border: none;
      padding: 0;
  }
}
@media (max-width: 480px) {
  .page-banner {
    height: 300px;
  }
  .page-banner h1{
    margin-top: 70px;
  }
}

/* CONTACT PAGE */
@media (max-width:768px){
    .contact-us-page .address .clearfix {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }
    .contact-us-page .address ul li{
        width: 100%;
        display: flex;
        align-items: center;
    }
    .contact-us-page .address .clearfix li p{
        font-size: 17px;
        display: block;
        margin-top: 15px;
    }
}