/* 
   =============================================
   Astromarg - Premium Vedic Astrology
   CSS Styling
   ============================================= 
*/

/* --- CSS Variables --- */
:root {
    /* Color Palette */
    --color-bg-dark: #ffffff;
    --color-bg-main: #f8f9fa;
    --color-bg-light: #f8f9fa;
    --color-gold: #ffb703;
    --color-gold-light: #ffc300;
    --color-gold-dark: #fb8500;
    --color-purple: #e9ecef;
    --color-purple-light: #6A0DAD;
    --color-text-main: #222222;
    --color-text-muted: #555555;
    
    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Space Mono', monospace;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-blur: blur(10px);
    
    /* Spacing */
    --section-padding: 100px 0;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Global Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* For custom cursor */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
}

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

ul {
    list-style: none;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-gold);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.left-align {
    text-align: left;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--color-gold);
}

/* --- Buttons --- */
.btn-primary, .btn-secondary, .social-btn, .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-bg-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-primary.glow {
    animation: pulse-glow 2s infinite;
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* --- Navigation Bar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-text-main);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-links .dropdown {
    position: relative;
}
.nav-links .dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    z-index: 100;
}
.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    margin: 0;
}
.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 0.95rem;
}
.dropdown-menu li a:hover {
    background: var(--color-bg-light);
    color: var(--color-gold);
}
.dropdown-menu li a::after {
    display: none; /* Hide bottom line hover effect in dropdown */
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-gold);
    font-size: 2rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #fffcf0; /* Subtle warm distinct background color */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
}

/* Removed Gradient overlay since background is solid */
.hero::after {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

/* --- Hero Lead Form Styles have been moved to the bottom --- */

.hero-headline {
    font-size: 4rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

/* --- Hero Stats Styles have been moved to the bottom --- */

/* --- Services Section --- */
.services {
    padding: var(--section-padding);
    background-color: var(--color-bg-light);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 183, 3, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12), 0 0 20px rgba(255, 183, 3, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* --- About Section --- */
.about {
    padding: var(--section-padding);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    border-radius: 16px;
    z-index: 0;
}

.about-image {
    width: 100%;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
}

.gold-separator {
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin-bottom: 24px;
}

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

.achievement-badges {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    color: var(--color-text-main);
    font-size: 0.9rem;
    font-weight: 500;
}

.badge i {
    color: var(--color-gold);
    font-size: 1.4rem;
}

/* --- Process Section --- */
.process {
    padding: var(--section-padding);
    background-color: var(--color-bg-light);
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.timeline-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--color-bg-dark);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.2);
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-number {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    transform: scale(1.1);
}

.timeline-step h4 {
    font-size: 1.1rem;
    font-family: var(--font-body);
}

.timeline-connector {
    flex: 1;
    height: 2px;
    background: rgba(255, 183, 3, 0.3);
    margin: 0 -20px;
    position: relative;
    top: -20px;
    z-index: 1;
}

/* --- Testimonials --- */
.testimonials {
    padding: var(--section-padding);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.review-text {
    font-style: italic;
    color: var(--color-text-muted);
    margin: 20px 0;
    font-size: 1.05rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-purple-light), var(--color-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-weight: 600;
    color: var(--color-gold);
}

.client-location {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* --- Pricing/Plans Section --- */
.pricing {
    padding: var(--section-padding);
    background-color: var(--color-bg-dark);
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-top: -15px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.premium-card {
    background: linear-gradient(145deg, #ffffff, #fcfcfc);
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.15);
    padding: 50px 30px;
    z-index: 2;
    transform: scale(1.05);
}

.premium-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 183, 3, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-bg-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 183, 3, 0.3);
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 10px;
    text-align: center;
}

.highlight-price {
    color: var(--color-gold);
    text-shadow: 0 0 15px rgba(255, 183, 3, 0.3);
}

.plan-title {
    text-align: center;
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 30px;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

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

.plan-features i {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-top: 2px;
}

.plan-btn {
    width: 100%;
}

/* --- Booking Section --- */
.booking {
    padding: var(--section-padding);
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--color-gold) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
}

.booking-container {
    position: relative;
    z-index: 2;
    background: #ffffff;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header p {
    color: var(--color-text-muted);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-group label {
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 500;
}

.input-group input,
.input-group select {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    background: #ffffff;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.booking-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4CAF50;
}

.whatsapp-btn {
    color: #25D366;
    border: 1px solid #25D366;
    background: transparent;
    padding: 8px 16px;
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.1);
    transform: translateY(-2px);
}

/* --- Social Section --- */
.social {
    padding: var(--section-padding);
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border);
}

.social-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #3b5998;
}

.social-profile-img {
    width: 60px;
    height: 60px;
    background: white;
    color: #3b5998;
    border-radius: 50%;
    margin: 40px auto 15px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid var(--color-bg-light);
}

.social-card h4 {
    margin-bottom: 5px;
}

.followers {
    font-size: 0.85rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.bio {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.instagram .social-icon i {
    background: -webkit-linear-gradient(#833ab4, #fd1d1d, #fcb045);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.yt-preview {
    background: rgba(0,0,0,0.5);
    height: 120px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 3rem;
    color: #FF0000;
}

.wa-icon {
    color: #25D366;
}

.social-btn {
    width: 100%;
    padding: 10px;
    font-size: 0.95rem;
}

.fb-btn { background: #3b5998; color: white; }
.ig-btn { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; }
.yt-btn { background: #FF0000; color: white; }
.wa-btn { background: #25D366; color: white; }

/* --- Footer --- */
.footer {
    background: var(--color-bg-main);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-logo {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold);
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-desc {
    color: var(--color-text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-heading {
    color: var(--color-text-main);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links-list, .footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-list a, .footer-contact-list li {
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-links-list a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.footer-contact-list a:hover {
    color: var(--color-gold);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--color-text-main);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background: var(--color-gold);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright, .footer-legal a {
    color: rgba(0,0,0,0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--color-gold);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Custom Cursor --- */
.custom-cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: background-color 0.2s;
}

.custom-cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor-ring.hover {
    width: 50px; height: 50px;
    background-color: rgba(255, 183, 3, 0.1);
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* --- Global Hover Effects & Drop Shadows --- */
.service-detail-block, .service-card, .faq-item, .testimonial, .pricing-card, .about-image, .service-detail-image, .service-trust-item, .benefit-card {
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Distinct permanent drop shadow */
}

/* Benefit Card Base Styles */
.benefit-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

/* Elevate and add golden shadow on hover */
.service-detail-block:hover, .service-card:hover, .faq-item:hover, .testimonial:hover, .pricing-card:hover, .service-trust-item:hover, .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15); /* Rich golden drop shadow */
    border-color: var(--color-gold);
}

/* Icon floating animation on hover */
.service-detail-image i, .about-image i, .benefit-card i, .service-trust-icon i {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.about-wrapper:hover .service-detail-image i, .about-wrapper:hover .about-image i, .benefit-card:hover i, .service-trust-item:hover .service-trust-icon i {
    transform: scale(1.15) translateY(-10px) rotate(5deg);
    color: var(--color-gold-dark) !important;
    opacity: 1 !important;
}

/* Button scaling */
.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
}

/* Form input focus glow */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    body { cursor: auto; }
    .custom-cursor-dot, .custom-cursor-ring { display: none !important; }
    
    .hero-headline { font-size: 3rem; }
    .about-container { flex-direction: column; text-align: center; }
    .about-content .left-align { text-align: center; }
    .gold-separator { margin: 0 auto 24px; }
    .achievement-badges { justify-content: center; }
    
    .premium-card { transform: none; padding: 40px 30px; }
    .premium-card:hover { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero-container { flex-direction: column; text-align: center; padding-top: 40px; gap: 40px; }
    .hero-content { margin-bottom: 20px; }
    .hero-lead-wrapper { flex: auto; width: 100%; justify-content: center; }
    .hero-headline { font-size: 2.5rem; }
    .hero-buttons { justify-content: center; flex-direction: column; }
    .trust-indicators { flex-direction: column; gap: 10px; }
    .trust-separator { width: 100%; height: 1px; }
    
    .timeline { flex-direction: column; gap: 40px; }
    .timeline-connector { width: 2px; height: 40px; margin: 0; top: 0; }
    
    .booking-container { padding: 30px 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .booking-footer { flex-direction: column; gap: 15px; }
}

/* ========================================================
   NEW HTML STRUCTURE STYLES (MAPPED FROM OLD AESTHETICS)
   ======================================================== */

/* Utilities */
.text-accent {
    color: var(--color-gold);
}
.hero-tag, .section-tag {
    font-family: var(--font-accent);
    color: var(--color-gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

/* Buttons */
.btn-ghost, .btn-outline {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-text-main);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-block;
    text-align: center;
}
.btn-ghost:hover, .btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}
.btn-large {
    font-size: 1.2rem;
    padding: 18px 40px;
}

/* Hero Stats */
.hero-cta { display: flex; gap: 20px; margin-top: 30px; margin-bottom: 40px; }
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.6);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}
.stat { display: flex; flex-direction: column; }
.stat-value { font-size: 1.5rem; font-weight: 700; color: var(--color-gold); }
.stat-label { font-size: 0.85rem; color: var(--color-text-muted); }
.stat-divider { width: 1px; height: 30px; background: rgba(0, 0, 0, 0.1); }

/* Forms */
.hero-form-wrapper { flex: 0 0 400px; display: flex; justify-content: flex-end; }
.hero-form, .booking-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 30px;
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.hero-form h3 { margin-bottom: 20px; }
.form-group { margin-bottom: 15px; display: flex; flex-direction: column; gap: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { font-size: 0.9rem; color: var(--color-gold); font-weight: 500; }
.form-group input, .form-group select {
    background: #ffffff; border: 1px solid var(--glass-border);
    border-radius: 8px; padding: 12px 16px; width: 100%; box-sizing: border-box;
    color: var(--color-text-main); font-family: var(--font-body); font-size: 1rem;
    transition: var(--transition-smooth);
}
.form-group input:focus, .form-group select:focus {
    outline: none; border-color: var(--color-gold);
}
.form-note { font-size: 0.8rem; color: var(--color-text-muted); text-align: center; margin-top: 10px; }
.full-width { width: 100%; }

/* Services */
.service-item {
    background: var(--glass-bg); border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px; padding: 40px 30px; text-align: center;
    transition: var(--transition-smooth); position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.service-item:hover { transform: translateY(-10px); border-color: var(--color-gold); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.service-icon { font-size: 3rem; color: var(--color-gold); margin-bottom: 20px; }

/* About */
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-features { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.feature { display: flex; align-items: center; gap: 10px; }
.feature-icon {
    width: 24px; height: 24px; background: var(--color-gold); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
}

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.process-step h4 { margin: 15px 0 10px; }

/* Testimonials */
.testimonial {
    background: #ffffff; border: 1px solid var(--glass-border);
    border-radius: 16px; padding: 40px 30px; position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--transition-smooth);
}
.testimonial:hover { transform: translateY(-5px); border-color: var(--color-gold); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.rating { color: var(--color-gold); font-size: 1.2rem; margin-bottom: 15px; letter-spacing: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
.author-avatar {
    width: 50px; height: 50px; background: var(--color-gold); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 700;
}
.author-name { font-weight: 600; }
.author-role { font-size: 0.85rem; color: var(--color-text-muted); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.pricing-card {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 40px 30px; text-align: center;
    transition: var(--transition-smooth); box-shadow: 0 5px 15px rgba(0,0,0,0.03); position: relative;
}

/* FAQ Grid 4x1 Layout */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .faq-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
}
.pricing-card:hover { transform: translateY(-8px); border-color: var(--color-gold); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.pricing-card.featured { transform: scale(1.05); border: 2px solid var(--color-gold); background: #ffffff; }
.price-header h3 { margin-bottom: 10px; }
.price { font-size: 2.5rem; font-weight: 700; color: var(--color-gold); margin-bottom: 20px; }
.price-features { list-style: none; padding: 0; margin: 0 0 30px; text-align: left; }
.price-features li { padding: 10px 0; border-bottom: 1px solid var(--glass-border); }
.price-features li:last-child { border-bottom: none; }

/* CTA */
.cta { padding: 100px 0; text-align: center; background: var(--color-bg-main); border-top: 1px solid var(--glass-border); }
.cta-content { max-width: 600px; margin: 0 auto; }
.cta h2 { margin-bottom: 20px; }
.cta p { margin-bottom: 40px; color: var(--color-text-muted); }

/* Responsive adjustments for new classes */
@media (max-width: 768px) {
    .about-wrapper, .form-row { grid-template-columns: 1fr; }
    .hero-form-wrapper { flex: auto; justify-content: center; margin-top: 40px; }
}

/* Fixes for missing structural classes */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; color: var(--color-gold); margin-bottom: 10px; }
.section-header p { font-size: 1.1rem; color: var(--color-text-muted); }
.step-number { font-family: var(--font-accent); font-size: 2.5rem; color: var(--color-gold); font-weight: 700; opacity: 0.5; margin: 0 auto 15px; }
.about-image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trust Services Layout */
.services-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}
.service-trust-item {
    text-align: center;
    padding: 20px 10px;
}
.service-trust-icon {
    font-size: 3.5rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}
.service-trust-item h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: var(--color-text-main);
}
.service-trust-item p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .faq-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
}

/* Go To Top Button */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: var(--color-bg-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.go-to-top.show {
    opacity: 0.55;
    visibility: visible;
    transform: translateY(0);
}

.go-to-top.show:hover {
    opacity: 1;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}
