/* AstroGuru Main Styles */

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --dark-color: #1e293b;
    --light-color: #f1f5f9;
    --text-color: #334155;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --gold: #d4af37;
    --dark-gold: #b8941f;
    --light-gold: #f4e4c1;
    --accent: #d4af37;
    --silver: #c0c0c0;
    --dark-silver: #a8a8a8;
    --white: #ffffff;
    --off-white: #fafafa;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.8;
    background: linear-gradient(-45deg, #fff5f5, #ffe8e8, #fff0e6, #fffaf0, #f0f8ff, #fef5ff);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    font-weight: 400;
    font-size: 14px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Smooth page transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Focus States for Accessibility */
*:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* Selection Colors */
::selection {
    background: var(--gold);
    color: var(--white);
}

::-moz-selection {
    background: var(--gold);
    color: var(--white);
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100vh !important;
}

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

/* Header */
.site-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 245, 0.98) 100%);
    box-shadow: 0 4px 30px rgba(139, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(139, 0, 0, 0.3) 20%,
        rgba(196, 30, 58, 0.5) 50%,
        rgba(139, 0, 0, 0.3) 80%,
        transparent 100%
    );
    opacity: 0.8;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(139, 0, 0, 0.15) 50%,
        transparent 100%
    );
}

.site-header.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 245, 0.98) 100%);
    box-shadow: 0 8px 40px rgba(139, 0, 0, 0.12);
}

.site-header.scrolled::before {
    opacity: 0.5;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(139, 0, 0, 0.15) 50%,
        transparent 100%
    );
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.7rem 0;
    position: relative;
    min-height: 70px;
}

.logo {
    justify-self: start;
}

.main-nav {
    justify-self: center;
}

.header-cta {
    justify-self: end;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding: 0.3rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-img {
    height: 60px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 3px 6px rgba(139, 0, 0, 0.15));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(139, 0, 0, 0.25));
}

/* Header CTA Button */
.header-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 50%, #8b0000 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    line-height: 1;
    height: 44px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    border-radius: 50%;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.4);
    background-position: 100% 50%;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: scale(1.1) rotate(5deg);
}

.cta-button span {
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.98rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.6rem 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.2px;
    border-radius: 10px;
    overflow: hidden;
    line-height: 1;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b0000, #c41e3a, #8b0000);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.08), rgba(196, 30, 58, 0.05));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.main-nav a:hover {
    color: #8b0000;
    transform: translateY(-2px);
}

.main-nav a:hover::before {
    transform: scaleX(1);
}

.main-nav a:hover::after {
    opacity: 1;
}

.main-nav a.active {
    color: #8b0000;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(196, 30, 58, 0.08));
    font-weight: 600;
}

.main-nav a.active::before {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    height: 100%;
}

.user-icon {
    font-size: 2rem;
    color: var(--silver);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.user-icon::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.user-icon:hover {
    color: var(--gold);
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.4));
}

.user-icon:hover::after {
    width: 100%;
}

.btn-signin {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--white);
    padding: 0.7rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid var(--gold);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4),
                inset 0 1px 3px rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

.btn-signin::before {
    content: '';
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 20px rgba(212, 175, 55, 0.4);
    }
}

.btn-signin::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-signin:hover {
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5),
                0 0 20px rgba(212, 175, 55, 0.3),
                inset 0 1px 3px rgba(212, 175, 55, 0.2);
}

.btn-signin:hover::before {
    background: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.btn-signin:hover::after {
    left: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    padding: 0.5rem;
    transition: color 0.3s ease;
    margin-left: auto;
    justify-self: end;
    position: absolute;
    right: 0;
}

.mobile-menu-toggle:hover {
    color: #8b0000;
}

.mobile-menu {
    display: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 245, 0.98));
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 2rem 1.5rem;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid rgba(139, 0, 0, 0.2);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mobile-menu-backdrop.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    padding: 0;
    margin-bottom: 0.3rem;
}

.mobile-menu a {
    color: #2d2d2d;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.mobile-menu a:hover {
    color: #8b0000;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(196, 30, 58, 0.08));
    transform: translateX(5px);
    border-color: rgba(139, 0, 0, 0.3);
}

.mobile-menu a.active {
    color: #8b0000;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.12), rgba(196, 30, 58, 0.1));
    font-weight: 600;
    border-color: rgba(139, 0, 0, 0.3);
}

.mobile-menu-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(139, 0, 0, 0.1);
}

.mobile-menu-cta .cta-button {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1.05rem;
}

/* Mobile Menu Close Button in Mobile View */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-close {
        position: absolute;
        top: 1.2rem;
        right: 1.5rem;
        font-size: 2rem;
        color: #8b0000;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: none;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        background: rgba(139, 0, 0, 0.1);
        border-radius: 50%;
        z-index: 1000;
        border: none;
        font-weight: 300;
        line-height: 1;
    }

    .mobile-menu.active .mobile-menu-close {
        display: flex;
    }

    .mobile-menu-close:hover {
        background: rgba(139, 0, 0, 0.2);
        transform: rotate(90deg);
    }

    .logo-img {
        height: 45px;
    }
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(139, 0, 0, 0.3)), url('../images/bg.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    margin-top: 0;
    padding-top: 80px;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
}

.hero-video {
    display: none;
}

.hero-video.loaded {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 3rem;
}

.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 0.5rem 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    margin: 0 0 0.8rem 0;
    line-height: 1.1;
    letter-spacing: 0px;
    text-shadow: 0 4px 16px rgba(139, 0, 0, 0.8);
    animation: fadeInUp 1.2s ease-out;
}

.hero-description {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    max-width: 650px;
    line-height: 1.7;
    margin: 0 0 1.8rem 0;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero-explore,
.btn-hero-book {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    letter-spacing: 0.3px;
}

.btn-hero-explore {
    background: #8b0000;
    color: var(--white);
    border: none;
}

.btn-hero-explore:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

.btn-hero-explore i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-hero-explore:hover i {
    transform: translateX(3px);
}

.btn-hero-book {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-hero-book:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fff;
    color: #8b0000;
    border: 2px solid #8b0000;
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #8b0000 0%, #a00000 100%);
    color: #fff;
    border-color: #8b0000;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.25);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Services Section */
.services {
    padding: 7rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.2), transparent);
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b0000, transparent);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.8rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.service-card {
    background: #ffffff;
    padding: 1.2rem 0.8rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(139, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #8b0000, transparent);
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    transform: translateX(-50%) scaleX(1);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.15);
    border-color: rgba(139, 0, 0, 0.4);
}

.service-card i {
    font-size: 2rem;
    color: #8b0000;
    margin-bottom: 0.8rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover i {
    color: #a00000;
    transform: scale(1.15) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 0;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #fef9f5 0%, #ffe8e0 50%, #fff5f0 100%);
    padding: 6rem 0 2.5rem;
    text-align: center;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    display: flex;
    align-items: center;
    min-height: 220px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.08), transparent 70%);
    border-radius: 50%;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 66, 28, 0.06), transparent 70%);
    border-radius: 50%;
}

.about-hero h1 {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 1.15rem;
    font-weight: 400;
    opacity: 0.85;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    color: #333;
    line-height: 1.7;
}

.hero-icon {
    font-size: 3rem;
    color: #8b0000;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.hero-icon i {
    filter: drop-shadow(0 4px 10px rgba(139, 0, 0, 0.3));
}

/* Section Label Style */
.section-label {
    display: inline-block;
    color: #8b0000;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Story Section */
.story-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 5rem;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(139, 0, 0, 0.1);
}

.story-image img,
.story-image .story-video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.story-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
}

.story-badge i {
    font-size: 2rem;
}

.story-badge span {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.story-text h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.story-text p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(139, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #8b0000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-item p {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

/* Founder Section */
.founder-section {
    padding: 7rem 0;
    background: #faf8f5;
}

.founder-content {
    display: grid;
    grid-template-columns: minmax(300px, 450px) 1fr;
    gap: 5rem;
    align-items: center;
}

.founder-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(139, 0, 0, 0.1);
}

.founder-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

.founder-img-wrapper img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    object-position: center center;
    display: block;
    position: relative;
}

.founder-overlay {
    display: none;
}

.founder-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.founder-text p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.founder-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 50px;
    border: 2px solid rgba(139, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    border-color: #8b0000;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.15);
}

.expertise-item i {
    color: #8b0000;
    font-size: 1.1rem;
}

.expertise-item span {
    font-weight: 500;
    color: #333;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-box,
.vision-box {
    background: white;
    padding: 4rem 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(139, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-box::before,
.vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b0000, #c41e3a);
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.15);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(139, 0, 0, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: #8b0000;
}

.mission-box h2,
.vision-box h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.mission-box p,
.vision-box p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    font-weight: 300;
}

/* Consultation Packages Section */
.consultation-packages-section {
    padding: 7rem 0;
    background: white;
    text-align: center;
}

.consultation-packages-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 4rem auto 3rem;
}

.package-card {
    background: white;
    border: 2px solid rgba(139, 0, 0, 0.1);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.package-card.featured {
    border-color: #8b0000;
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(139, 0, 0, 0.2);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.15);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #8b0000, #c41e3a);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.package-header {
    margin-bottom: 2rem;
}

.package-header h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.package-tagline {
    color: #666;
    font-size: 1rem;
    font-weight: 300;
}

.package-price {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(139, 0, 0, 0.1);
}

.package-price .currency {
    font-size: 1.5rem;
    color: #8b0000;
    font-weight: 600;
}

.package-price .amount {
    font-size: 3rem;
    color: #8b0000;
    font-weight: 700;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    text-align: left;
}

.package-features li {
    padding: 0.75rem 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.package-features i {
    color: #8b0000;
    margin-top: 0.2rem;
    font-size: 0.9rem;
}

.package-btn {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8b0000, #c41e3a);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.package-btn:hover {
    background: linear-gradient(135deg, #a00000, #d41e3a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

.consultation-note {
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: linear-gradient(135deg, #faf8f5, #fff5f5);
    border-radius: 12px;
    border-left: 4px solid #8b0000;
}

.consultation-note p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Values Section */
.values-section {
    padding: 7rem 0;
    background: #faf8f5;
    text-align: center;
}

.values-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(139, 0, 0, 0.08);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b0000, transparent);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.12);
    border-color: rgba(139, 0, 0, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(139, 0, 0, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #8b0000, #c41e3a);
}

.value-icon i {
    font-size: 2.5rem;
    color: #8b0000;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon i {
    color: white;
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Why Choose Section */
.why-choose-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 5rem;
    align-items: center;
}

.why-text h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.why-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.why-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b0000, #c41e3a);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.why-info h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.why-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
}

.why-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(139, 0, 0, 0.1);
}

.why-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Responsive About Page */
@media (max-width: 992px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-img-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .founder-img-wrapper img {
        max-height: 400px;
    }

    .founder-image {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 5.5rem 0 2rem;
        min-height: 200px;
    }

    .about-hero h1 {
        font-size: 2.2rem;
        font-weight: 600;
    }

    .about-hero p {
        font-size: 1.05rem;
        font-weight: 400;
    }

    .hero-icon {
        font-size: 2.3rem;
        margin-bottom: 0.8rem;
    }

    .page-hero {
        padding: 5.5rem 0 2rem;
        min-height: 200px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
        font-weight: 600;
    }

    .page-hero p {
        font-size: 1.05rem;
        font-weight: 400;
    }

    .founder-img-wrapper {
        max-width: 320px;
    }

    .founder-img-wrapper img {
        max-height: 350px;
    }

    .founder-image {
        width: 250px;
        height: 250px;
    }

    .founder-text h2 {
        font-size: 2rem;
        font-weight: 600;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Booking Section */
.booking-section {
    padding: 6rem 0;
    text-align: center;
    background: white;
}

.booking-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.booking-price {
    font-size: 3rem;
    font-weight: 400;
    color: #8b0000;
    margin-bottom: 0.5rem;
}

.booking-section p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.booking-section .btn-primary {
    background: #8b0000;
    color: white;
    padding: 1.1rem 3rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.4s ease;
}

.booking-section .btn-primary:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

/* Book by Service Section - Compact Design */
.book-by-service-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
    position: relative;
}

.book-by-service-section h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Compact Service Selector */
.service-selector-compact {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.service-dropdown {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #1a1a1a;
    background: white;
    border: 2px solid rgba(139, 0, 0, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-family: inherit;
    outline: none;
}

.service-dropdown:hover {
    border-color: #8b0000;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.15);
}

.service-dropdown:focus {
    border-color: #8b0000;
    box-shadow: 0 4px 16px rgba(139, 0, 0, 0.2);
}

.service-dropdown option {
    padding: 0.5rem;
    font-size: 1rem;
}

/* Filtered Results Section */
#filteredAstrologersSection {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 0, 0, 0.15);
}

.filter-header-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-header-compact h4 {
    font-size: 1.2rem;
    color: #8b0000;
    font-weight: 600;
    margin: 0;
}

.btn-clear-filter-compact {
    padding: 0.5rem 1rem;
    background: #8b0000;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-clear-filter-compact:hover {
    background: #a00000;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .book-by-service-section h3 {
        font-size: 1.5rem;
    }

    .service-dropdown {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .filter-header-compact {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-header-compact h4 {
        font-size: 1.1rem;
    }
}

/* Services Page - New Layout */
.services-grid-section {
    padding: 1.5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
}

.services-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    min-height: 500px;
}

/* Left Sidebar - Services List */
.services-sidebar {
    background: white;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.services-sidebar h3 {
    font-size: 1.05rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #8b0000;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-item {
    padding: 0.6rem 0.8rem;
    background: #faf8f5;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    color: #333;
    border-left: 3px solid transparent;
}

.service-item:hover {
    background: #f5f0eb;
    border-left-color: #8b0000;
    transform: translateX(5px);
}

.service-item.active {
    background: linear-gradient(90deg, #8b0000 0%, #a00000 100%);
    color: white;
    font-weight: 600;
    border-left-color: #8b0000;
}

/* Right Content - Astrologers */
.services-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.service-header h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.service-header p {
    color: #666;
    font-size: 1rem;
}

.astrologers-grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}

.loading-astrologers,
.no-astrologers,
.error-message {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.1rem;
    grid-column: 1/-1;
}

.loading-astrologers i {
    font-size: 2rem;
    color: #8b0000;
    display: block;
    margin-bottom: 1rem;
}

/* Responsive - Services Layout */
@media (max-width: 992px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-sidebar {
        position: static;
        padding: 1rem;
    }

    .services-sidebar h3 {
        font-size: 1rem;
        margin-bottom: 0.7rem;
        padding-bottom: 0.5rem;
    }

    .services-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .service-item {
        flex: 0 0 auto;
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 5px;
    }

    .astrologers-grid-services {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .services-sidebar {
        padding: 0.8rem;
    }

    .services-sidebar h3 {
        font-size: 0.95rem;
    }

    .service-item {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
        border-left-width: 2px;
    }

    .services-content {
        padding: 1rem;
    }

    .service-header h2 {
        font-size: 1.5rem;
    }

    .astrologers-grid-services {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .services-sidebar {
        padding: 0.6rem;
    }

    .services-sidebar h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.4rem;
    }

    .services-list {
        gap: 0.3rem;
    }

    .service-item {
        padding: 0.35rem 0.6rem;
        font-size: 0.7rem;
    }

    .services-content {
        padding: 0.8rem;
    }

    .service-header {
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }

    .service-header h2 {
        font-size: 1.3rem;
    }

    .astrologers-grid-services {
        grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
        gap: 0.6rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.8rem;
}

.service-card-interactive {
    background: white;
    padding: 1rem 0.8rem;
    border-radius: 10px;
    border: 2px solid rgba(139, 0, 0, 0.25);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-card-interactive:hover {
    transform: translateY(-8px);
    border-color: #8b0000;
    box-shadow: 0 12px 30px rgba(139, 0, 0, 0.2);
}

.service-card-interactive i {
    font-size: 3rem;
    color: #8b0000;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card-interactive:hover i {
    transform: scale(1.1);
    color: #c41e3a;
}

.service-card-interactive h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-card-interactive p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card-interactive .view-more {
    display: inline-block;
    color: #8b0000;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-interactive:hover .view-more {
    opacity: 1;
}

.service-card-interactive .view-more i {
    font-size: 0.9rem;
    margin-left: 0.3rem;
}

/* Service Details Modal */
#serviceDetailsSection {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
}

.service-details-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.service-details-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
    z-index: 3001;
}

.close-details {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(139, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-details:hover {
    background: #8b0000;
    transform: rotate(90deg);
}

.close-details i {
    color: #8b0000;
    font-size: 1.3rem;
}

.close-details:hover i {
    color: white;
}

.service-details-content {
    padding: 3rem;
}

.service-details-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(139, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.service-details-header i {
    font-size: 4rem;
    color: #8b0000;
    margin-bottom: 1rem;
}

.service-details-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-details-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.service-astrologers-section h3 {
    font-size: 1.8rem;
    color: #8b0000;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-details-container {
        width: 95%;
        margin: 1rem auto;
    }

    .service-details-content {
        padding: 2rem 1.5rem;
    }

    .service-details-header h2 {
        font-size: 2rem;
    }

    .service-details-header p {
        font-size: 1rem;
    }

    .close-details {
        top: 1rem;
        right: 1rem;
    }

    .page-hero {
        padding: 4rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    overflow-y: auto;
}

.modal-content {
    background: #fff;
    margin: 2% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.booking-summary {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.booking-summary p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

/* Astrologers Grid */
.page-header {
    background: #faf8f5;
    color: #1a1a1a;
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

.astrologers-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 50%, #ffffff 100%);
    position: relative;
}

.astrologers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.astrologers-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    position: relative;
}

.astrologers-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.astrologers-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    margin-bottom: 4.5rem;
    letter-spacing: 0.3px;
    margin-top: 1.5rem;
}

.astrologers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .astrologers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .astrologers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.astrologer-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid rgba(139, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.astrologer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.15);
    border-color: rgba(139, 0, 0, 0.2);
}

.astrologer-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.astrologer-image img {
    width: 115%;
    height: 280px;
    object-fit: contain;
    transition: transform 0.4s ease;
    margin: 0 -7.5%;
}

.astrologer-card:hover .astrologer-image img {
    transform: scale(1.05);
}

.astrologer-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.astrologer-info h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.experience {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.experience i {
    color: #8b0000;
    font-size: 0.85rem;
}

.specialties-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.specialty-tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.08), rgba(139, 0, 0, 0.05));
    color: #8b0000;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(139, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.specialty-tag:hover {
    background: linear-gradient(135deg, #8b0000, #c41e3a);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(139, 0, 0, 0.2);
}

.bio {
    margin: 0 0 auto 0;
    line-height: 1.7;
    color: #666;
    font-size: 0.98rem;
    font-weight: 400;
    min-height: 60px;
}

.astrologer-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 2px solid rgba(139, 0, 0, 0.1);
}

.astrologer-actions {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

.astrologer-actions .btn-small {
    flex: 1;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 50px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b0000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(139, 0, 0, 0.05);
    border-radius: 8px;
}

.astrologer-footer .btn-primary {
    background: #8b0000;
    color: white;
    padding: 0.9rem 2rem;
    border: none;
}

.astrologer-footer .btn-primary:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

/* Astrologer Card Responsive Styles */
@media (max-width: 768px) {
    .astrologer-card {
        border-radius: 8px;
    }

    .astrologer-image img {
        height: 200px;
    }

    .astrologer-info {
        padding: 0.8rem;
    }

    .astrologer-info h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .experience {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .specialties-tags {
        gap: 0.3rem;
        margin-bottom: 0.6rem;
    }

    .specialty-tag {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
        border-radius: 12px;
    }

    .bio {
        font-size: 0.8rem;
        line-height: 1.4;
        min-height: 40px;
    }

    .astrologer-footer {
        gap: 0.6rem;
        margin-top: 0.8rem;
        padding-top: 0.8rem;
    }

    .price {
        font-size: 1.1rem;
        padding: 0.3rem;
    }

    .astrologer-actions .btn-small {
        padding: 0.5rem 0.6rem;
        font-size: 0.75rem;
        gap: 0.3rem;
    }

    .astrologer-actions .btn-small i {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .astrologer-image img {
        height: 180px;
    }

    .astrologer-info {
        padding: 0.6rem;
    }

    .astrologer-info h3 {
        font-size: 0.9rem;
    }

    .experience {
        font-size: 0.7rem;
    }

    .specialty-tag {
        padding: 0.2rem 0.4rem;
        font-size: 0.6rem;
    }

    .bio {
        font-size: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .price {
        font-size: 1rem;
    }

    .astrologer-actions .btn-small {
        padding: 0.4rem 0.5rem;
        font-size: 0.7rem;
    }
}

/* Blog Grid */
.blog-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid rgba(139, 0, 0, 0.08);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b0000, #c41e3a, #8b0000);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.15);
    border-color: rgba(139, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.85rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-meta i {
    color: #8b0000;
}

.blog-content h3 {
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.read-more {
    color: #8b0000;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(139, 0, 0, 0.05);
}

.read-more:hover {
    gap: 0.75rem;
    background: rgba(139, 0, 0, 0.1);
}

/* Blog Single */
.blog-single {
    padding: 6rem 0;
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
}

.blog-single-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(139, 0, 0, 0.08);
    position: relative;
}

.blog-single-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b0000, #c41e3a, #8b0000);
}

.blog-featured-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.blog-featured-image img {
    width: 100%;
    border-radius: 12px;
}

.blog-single h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.3;
}

.blog-single .blog-meta {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(139, 0, 0, 0.1);
}

.blog-single .blog-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.blog-single .blog-content h2,
.blog-single .blog-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.blog-single .blog-content h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.blog-single .blog-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8b0000, #c41e3a);
}

.blog-single .blog-content h3 {
    font-size: 1.5rem;
    color: #8b0000;
}

.blog-single .blog-content p {
    margin-bottom: 1.25rem;
}

.blog-single .blog-content ul,
.blog-single .blog-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.blog-single .blog-content ul li,
.blog-single .blog-content ol li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.blog-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(139, 0, 0, 0.1);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.page-link {
    padding: 0.75rem 1.25rem;
    border: 2px solid rgba(139, 0, 0, 0.15);
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    background: #ffffff;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-link:hover {
    background: rgba(139, 0, 0, 0.05);
    border-color: #8b0000;
    color: #8b0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.15);
}

.page-link.active {
    background: linear-gradient(135deg, #8b0000, #c41e3a);
    color: #fff;
    border-color: #8b0000;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info {
    background: #ffffff;
    padding: 3.5rem 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(139, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b0000, #c41e3a, #8b0000);
}

.contact-info:hover {
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.12);
    border-color: rgba(139, 0, 0, 0.15);
}

.contact-info h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-info > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-details {
    margin: 2.5rem 0;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: rgba(139, 0, 0, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(139, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(139, 0, 0, 0.04);
    border-color: rgba(139, 0, 0, 0.15);
    transform: translateX(5px);
}

.contact-item i {
    color: #8b0000;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(139, 0, 0, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
}

.contact-info .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.contact-info .social-links a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8b0000, #c41e3a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.contact-info .social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.35);
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 3.5rem 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(139, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b0000, #c41e3a, #8b0000);
}

.contact-form-wrapper:hover {
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.12);
    border-color: rgba(139, 0, 0, 0.15);
}

.contact-form-wrapper h2 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(139, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b0000;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.05);
}

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

.btn-block {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8b0000, #c41e3a);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    margin-top: 1rem;
}

.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    border: 2px solid;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border-color: rgba(34, 197, 94, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border-color: rgba(239, 68, 68, 0.3);
}

/* Astrologers Section - Home */
.astrologers-section-home {
    padding: 7rem 0;
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 50%, #faf8f5 100%);
    position: relative;
}

.astrologers-section-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.2), transparent);
}

.astrologers-section-home h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.astrologers-section-home h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b0000, transparent);
}

.astrologers-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 4rem auto 3rem;
}

.astrologer-card-home {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.astrologer-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #8b0000;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.astrologer-card-home:hover::before {
    transform: scaleX(1);
}

.astrologer-card-home:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.15);
    border-color: rgba(139, 0, 0, 0.15);
}

.astrologer-image-home {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.astrologer-image-home::before {
    content: '\f007';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 3rem;
    color: #ccc;
    z-index: 1;
}

.astrologer-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
    background: #fff;
}

.astrologer-card-home:hover .astrologer-image-home img {
    transform: scale(1.05);
}

.astrologer-info-home {
    padding: 1.5rem;
}

.astrologer-info-home h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.specialization-home,
.experience-home {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.specialization-home i,
.experience-home i {
    color: #8b0000;
    font-size: 0.75rem;
}

.bio-home {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 1rem 0;
    font-weight: 300;
}

.astrologer-footer-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.price-home {
    font-size: 1.2rem;
    font-weight: 500;
    color: #8b0000;
}

.btn-consult {
    background: #8b0000;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: none;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-consult:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139, 0, 0, 0.3);
}

/* Quick Booking Modal */
.quick-booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(3px);
}

.quick-booking-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.quick-booking-content {
    background: white;
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(139, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.4s ease;
    border: 2px solid rgba(139, 0, 0, 0.1);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.booking-header {
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    color: white;
    padding: 35px 30px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.booking-header h2 {
    margin: 0 0 10px 0;
    font-size: 1.9rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.booking-header p {
    margin: 0;
    opacity: 0.95;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.booking-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.booking-close:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.booking-body {
    padding: 35px;
    background: #fafafa;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.time-slot-btn {
    padding: 14px 10px;
    border: 2px solid rgba(139, 0, 0, 0.15);
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.time-slot-btn:hover {
    border-color: #8b0000;
    background: rgba(139, 0, 0, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.15);
}

.time-slot-btn.selected {
    border-color: #8b0000;
    background: linear-gradient(135deg, #8b0000, #c41e3a);
    color: white;
    box-shadow: 0 6px 18px rgba(139, 0, 0, 0.3);
}

.time-slot-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f5f5f5;
    border-color: #e0e0e0;
}

.form-field {
    margin-bottom: 22px;
}

.form-field label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(139, 0, 0, 0.15);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: white;
    font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #8b0000;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.08);
}

.date-input-wrapper {
    position: relative;
}

.date-input-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b0000;
    pointer-events: none;
}

.booking-summary {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border: 2px solid rgba(139, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
    font-size: 0.95rem;
    color: #555;
}

.summary-row strong {
    color: #8b0000;
    font-weight: 600;
}

.summary-row.total {
    font-size: 1.1rem;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 2px solid rgba(139, 0, 0, 0.1);
}

.btn-book-now {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
    margin-top: 10px;
}

.btn-book-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(139, 0, 0, 0.4);
}

.btn-book-now:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.loading-slots,
.no-slots {
    text-align: center;
    padding: 35px 20px;
    color: #666;
    background: white;
    border-radius: 10px;
    border: 2px dashed rgba(139, 0, 0, 0.2);
}

.loading-slots i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    color: #8b0000;
    animation: spin 1s linear infinite;
}

.no-slots p {
    margin: 0;
    color: #8b0000;
    font-weight: 500;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Scrollbar styling for modal */
.quick-booking-content::-webkit-scrollbar {
    width: 8px;
}

.quick-booking-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 20px 20px 0;
}

.quick-booking-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8b0000, #c41e3a);
    border-radius: 10px;
}

.quick-booking-content::-webkit-scrollbar-thumb:hover {
    background: #8b0000;
}

.no-slots {
    text-align: center;
    padding: 30px;
    color: #999;
}

.date-input-wrapper {
    position: relative;
}

.date-input-wrapper input[type="date"] {
    padding-right: 40px;
}

.date-input-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b0000;
    pointer-events: none;
}

.view-all-astrologers {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3.5rem;
    background: transparent;
    color: #8b0000;
    text-decoration: none;
    border: 2px solid #8b0000;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-view-all::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: #8b0000;
    border-radius: 50px;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-view-all:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn-view-all:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 0, 0, 0.35);
}

.btn-view-all i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(3px);
}

/* Blog Section - Home */
.blog-section-home {
    padding: 7rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
    position: relative;
}

.blog-section-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.2), transparent);
}

.blog-section-home h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.blog-section-home h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b0000, transparent);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    margin-bottom: 4rem;
    letter-spacing: 0.3px;
}

.blog-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1300px;
    margin: 4rem auto 0;
}

.blog-card-home {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #8b0000;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.blog-card-home:hover::before {
    transform: scaleX(1);
}

.blog-card-home:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.15);
    border-color: rgba(139, 0, 0, 0.15);
}

.blog-image-home {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.blog-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-home:hover .blog-image-home img {
    transform: scale(1.05);
}

.blog-content-home {
    padding: 2.5rem 2rem;
}

.blog-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #8b0000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.blog-content-home h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.blog-content-home p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b0000;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.blog-read-more i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.75rem;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* Payment Section */
.payment-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.payment-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.booking-summary-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.booking-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b0000, #c41e3a, #8b0000);
}

.booking-summary-card h2 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: #555;
    font-size: 1.05rem;
}

.summary-item span {
    font-weight: 300;
}

.summary-item strong {
    font-weight: 500;
    color: #1a1a1a;
}

.summary-item.total {
    font-size: 1.4rem;
    font-weight: 500;
    border-bottom: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(139, 0, 0, 0.2);
}

.summary-item.total strong {
    color: #8b0000;
    font-weight: 600;
}

.booking-summary-card hr {
    border: none;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
    margin: 1.5rem 0;
}

.booking-summary-card .btn-primary {
    margin-top: 2rem;
    padding: 1rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    border: none;
    transition: all 0.3s ease;
}

.booking-summary-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

/* Thank You Page */
.thankyou-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thankyou-card {
    max-width: 750px;
    margin: 0 auto;
    background: #fff;
    padding: 4rem 3.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid rgba(139, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.thankyou-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #8b0000, #c41e3a, #8b0000);
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }
}

.success-icon i {
    font-size: 3.5rem;
    color: #16a34a;
}

.thankyou-card h1 {
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-size: 2.5rem;
    font-weight: 500;
}

.subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.booking-details {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.03), rgba(139, 0, 0, 0.01));
    padding: 2.5rem;
    border-radius: 16px;
    margin: 2.5rem 0;
    text-align: left;
    border: 2px solid rgba(139, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.booking-details h3 {
    color: #8b0000;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.booking-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8b0000, #c41e3a);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.08);
    transition: background 0.3s ease;
}

.detail-row:hover {
    background: rgba(139, 0, 0, 0.02);
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: 8px;
}

.detail-row:last-child {
    border-bottom: none;
}

.label {
    font-weight: 600;
    color: #333;
}

.value {
    color: #8b0000;
    font-weight: 500;
}

.next-steps {
    text-align: left;
    margin: 2.5rem 0;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(139, 0, 0, 0.1);
}

.next-steps h3 {
    color: #8b0000;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 1rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: rgba(139, 0, 0, 0.02);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.next-steps li:hover {
    background: rgba(139, 0, 0, 0.05);
    transform: translateX(5px);
}

.next-steps li:last-child {
    margin-bottom: 0;
}

.next-steps i {
    color: #8b0000;
    margin-top: 3px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.action-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.action-buttons .btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #8b0000, #c41e3a);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
    text-decoration: none;
    display: inline-block;
}

.action-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(139, 0, 0, 0.4);
}

.action-buttons .btn-secondary {
    padding: 1rem 2.5rem;
    background: white;
    color: #8b0000;
    border: 2px solid #8b0000;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.action-buttons .btn-secondary:hover {
    background: #8b0000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

.action-buttons .btn-secondary i {
    margin-right: 0.5rem;
}

.action-buttons .btn-primary i,
.action-buttons .btn-secondary i {
    margin-right: 0.5rem;
}

/* Receipt Specific Styles */
.receipt-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), rgba(139, 0, 0, 0.02));
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid rgba(139, 0, 0, 0.1);
}

.receipt-logo h2 {
    color: #8b0000;
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.receipt-logo p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.receipt-date {
    text-align: right;
}

.receipt-date p {
    margin: 0.25rem 0;
    color: #555;
    font-size: 0.9rem;
}

.receipt-section {
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(139, 0, 0, 0.1);
}

.receipt-section h3 {
    color: #8b0000;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(139, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.receipt-section h3 i {
    font-size: 1.1rem;
}

.total-row {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.08), rgba(139, 0, 0, 0.05));
    margin: 1rem -1rem;
    padding: 1.25rem 1rem !important;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    border: none !important;
}

.total-row .label,
.total-row .value {
    font-weight: 700;
    color: #8b0000;
}

.success-badge {
    color: #16a34a !important;
    font-weight: 600 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.success-badge i {
    font-size: 1.1rem;
}

.receipt-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px dashed rgba(139, 0, 0, 0.2);
}

.receipt-footer p {
    color: #666;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.receipt-footer p:first-child {
    font-size: 1.05rem;
    color: #333;
    font-weight: 500;
}

.terms-note {
    font-size: 0.85rem !important;
    color: #888 !important;
}

.terms-note a {
    color: #8b0000;
    text-decoration: none;
    font-weight: 500;
}

.terms-note a:hover {
    text-decoration: underline;
}

/* Print Styles */
@media print {
    .thankyou-section {
        padding: 2rem 0;
        background: white;
    }

    .thankyou-card::before {
        display: none;
    }

    .action-buttons,
    header,
    footer {
        display: none !important;
    }

    .thankyou-card {
        box-shadow: none;
        border: 2px solid #8b0000;
        max-width: 100%;
    }

    .receipt-section,
    .receipt-header,
    .next-steps {
        break-inside: avoid;
    }
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Review Form Section */
.review-form-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
}

.review-form-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.astrologer-info-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(139, 0, 0, 0.1);
    text-align: center;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.astrologer-info-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid rgba(139, 0, 0, 0.1);
}

.astrologer-info-card h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.astrologer-info-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.astrologer-info-card .astrologer-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #f59e0b;
    font-size: 1.1rem;
    font-weight: 500;
}

.review-form-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(139, 0, 0, 0.1);
}

.review-form-card h2 {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.review-form-card .form-description {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.review-form .form-group {
    margin-bottom: 1.75rem;
}

.review-form label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.review-form .required {
    color: #dc2626;
}

.review-form .optional {
    color: #999;
    font-weight: 400;
    font-size: 0.85rem;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(139, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafafa;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #8b0000;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.05);
}

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

.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    font-size: 2rem;
    color: #ddd;
    transition: all 0.2s ease;
    margin: 0;
}

.star-rating-input label:hover,
.star-rating-input label.hover {
    color: #f59e0b;
    transform: scale(1.1);
}

.star-rating-input input:checked ~ label,
.star-rating-input label.selected {
    color: #f59e0b;
}

.rating-text {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Astrologer Profile Section */
.astrologer-profile-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
}

.profile-header {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(139, 0, 0, 0.1);
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b0000, #c41e3a, #8b0000);
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(139, 0, 0, 0.1);
}

.profile-info {
    flex: 1;
}

.profile-info h1 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.profile-info .specialization {
    color: #8b0000;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.meta-item i {
    color: #8b0000;
    font-size: 1.1rem;
}

.profile-actions {
    display: flex;
    gap: 1rem;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-section {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(139, 0, 0, 0.1);
}

.about-section h2 {
    color: #1a1a1a;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.75rem;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8b0000, #c41e3a);
}

.about-section p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.reviews-section {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(139, 0, 0, 0.1);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.reviews-header h2 {
    color: #1a1a1a;
    font-size: 1.75rem;
    font-weight: 500;
}

.rating-summary {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    padding: 2rem;
    background: rgba(139, 0, 0, 0.02);
    border-radius: 12px;
    margin-bottom: 3rem;
}

.rating-overview {
    text-align: center;
    padding: 1rem;
}

.rating-number {
    font-size: 4rem;
    font-weight: 600;
    color: #8b0000;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    margin: 0 0.1rem;
}

.rating-count {
    color: #666;
    font-size: 0.95rem;
}

.rating-distribution {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-label {
    color: #666;
    font-size: 0.9rem;
    min-width: 50px;
}

.rating-label i {
    color: #f59e0b;
    font-size: 0.85rem;
}

.bar-container {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b0000, #c41e3a);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.rating-bar .rating-count {
    min-width: 40px;
    text-align: right;
    color: #666;
    font-size: 0.9rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    padding: 2rem;
    background: rgba(139, 0, 0, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(139, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    background: rgba(139, 0, 0, 0.03);
    border-color: rgba(139, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b0000, #c41e3a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.reviewer-info h4 {
    color: #1a1a1a;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.review-date {
    color: #999;
    font-size: 0.85rem;
}

.review-rating {
    color: #f59e0b;
    font-size: 1rem;
}

.review-rating i.empty {
    color: #ddd;
}

.review-text p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.no-reviews {
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
}

.no-reviews i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #ddd;
}

.no-reviews p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .review-form-wrapper {
        grid-template-columns: 1fr;
    }

    .astrologer-info-card {
        position: static;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-image {
        margin: 0 auto;
    }

    .profile-meta {
        justify-content: center;
    }

    .profile-actions {
        justify-content: center;
    }

    .rating-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #e0e0e0;
    padding: 4rem 0 1.5rem;
    position: relative;
    border-top: 3px solid #8b0000;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.5), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-col h3 i {
    color: #8b0000;
    margin-right: 0.5rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #8b0000;
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
    display: inline-block;
    position: relative;
}

.footer-col a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #8b0000;
    transition: width 0.3s ease;
}

.footer-col ul.contact-info {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    position: static;
    overflow: visible;
}

.footer-col ul.contact-info::before {
    display: none;
}

.footer-col ul.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #b0b0b0;
    font-weight: 300;
    margin-bottom: 1rem;
}

.footer-col ul.contact-info li i {
    color: #8b0000;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.footer-col a:hover {
    color: #8b0000;
    transform: translateX(3px);
}

.footer-col a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.3);
    color: #8b0000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a::before {
    display: none;
}

.social-links a:hover {
    background: #8b0000;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
}

.contact-info li {
    display: flex;
    gap: 0.75rem;
    color: #b0b0b0;
    font-weight: 300;
    line-height: 1.8;
}

.contact-info i {
    color: #8b0000;
    margin-top: 5px;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-bottom p {
    margin: 0;
}

/* Legal Pages - Privacy Policy & Terms */
.page-hero {
    padding: 6rem 0 2.5rem;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 50%, #fef9f5 100%);
    text-align: center;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.06), transparent 70%);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 66, 28, 0.05), transparent 70%);
    border-radius: 50%;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.8;
    position: relative;
    z-index: 1;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content {
    padding: 5rem 0;
    background: #faf8f5;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.update-date {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 1.5rem;
}

.legal-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: #8b0000;
    border-radius: 2px;
}

.legal-section p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-weight: 300;
    font-size: 1.05rem;
}

.legal-section ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.legal-section ul li {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-weight: 300;
    font-size: 1.05rem;
}

.legal-section ul li::before {
    content: '\2022';
    color: #8b0000;
    font-size: 1.5rem;
    position: absolute;
    left: 0.5rem;
    top: -0.1rem;
}

.legal-section ul li strong {
    color: #1a1a1a;
    font-weight: 500;
}

.contact-list {
    margin-top: 1.5rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 0;
    margin-bottom: 0.75rem;
}

.contact-list li::before {
    display: none;
}

.contact-list i {
    color: #8b0000;
    font-size: 1.1rem;
    width: 24px;
}

.legal-section.agreement {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), rgba(139, 0, 0, 0.02));
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #8b0000;
    margin-top: 4rem;
}

.legal-section.agreement p {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1400px) {
    .main-nav ul {
        gap: 1.8rem;
    }

    .main-nav a {
        font-size: 0.9rem;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }

    .main-nav ul {
        gap: 1.2rem;
    }

    .main-nav a {
        font-size: 0.85rem;
    }

    .logo-img {
        height: 45px;
    }

    .btn-signin {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .user-icon {
        font-size: 1.8rem;
    }

    .blog-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 1200px) {
    .astrologers-grid-home {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .main-nav ul {
        gap: 1rem;
    }

    .main-nav a {
        font-size: 0.8rem;
    }

    .header-actions {
        gap: 0.8rem;
    }

    .astrologers-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .header-content {
        padding: 0.5rem 0;
    }

    .logo-img {
        height: 35px;
    }

    .hero {
        min-height: 75vh;
        padding-top: 65px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 3px;
    }

    .hero-title {
        font-size: 2.8rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.05rem;
        font-weight: 400;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-hero-explore,
    .btn-hero-book {
        padding: 0.9rem 2rem;
        width: 100%;
        justify-content: center;
    }

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .service-card {
        padding: 1rem 0.6rem;
    }

    .service-card i {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .service-card h3 {
        font-size: 0.7rem;
    }

    .astrologers-grid,
    .blog-grid,
    .blog-grid-home,
    .astrologers-grid-home {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .legal-wrapper {
        padding: 2rem 1.5rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .legal-section h2 {
        font-size: 1.4rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 0.95rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    /* Footer Tablet */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col h3,
    .footer-col h4 {
        text-align: center;
    }

    .footer-col p {
        text-align: center;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col ul.contact-info li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .logo-img {
        height: 35px;
    }

    .about-hero {
        padding: 5rem 0 1.8rem;
        min-height: 180px;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-hero p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .hero-icon {
        font-size: 2rem;
        margin-bottom: 0.7rem;
    }

    .page-hero {
        padding: 5rem 0 1.8rem;
        min-height: 180px;
    }

    .page-hero h1 {
        font-size: 1.9rem;
        padding: 0 1rem;
    }

    .page-hero p {
        font-size: 1rem;
        font-weight: 400;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 2.5px;
    }

    .hero-title {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.6;
    }

    .mobile-menu {
        padding: 1rem;
    }

    .mobile-menu a {
        font-size: 0.95rem;
        font-weight: 500;
        padding: 0.6rem 0.5rem;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col h3,
    .footer-col h4 {
        font-size: 1.1rem;
        text-align: center;
    }

    .footer-col p {
        font-size: 0.9rem;
        text-align: center;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col li {
        font-size: 0.9rem;
        text-align: center;
    }

    .footer-col ul.contact-info li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .site-footer {
        padding: 3rem 0 1.5rem;
    }
}

/* Tablet landscape specific */
@media (min-width: 769px) and (max-width: 991px) {
    .main-nav a {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .header-actions {
        gap: 0.8rem;
    }

    .btn-signin {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Extra large screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .main-nav ul {
        gap: 3rem;
    }

    .main-nav a {
        font-size: 1rem;
    }

    .logo-img {
        height: 55px;
    }
}

/* Astrologer Details Modal */
.astrologer-details-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.astrologer-details-modal.active {
    display: flex;
}

.astrologer-details-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #8b0000;
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-close-btn:hover {
    background: white;
    transform: rotate(90deg);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

.astrologer-details-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d0a0a 100%);
    padding: 40px;
    border-radius: 20px 20px 0 0;
    display: flex;
    gap: 30px;
    align-items: center;
}

.astrologer-details-image {
    flex-shrink: 0;
}

.astrologer-details-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(139, 0, 0, 0.5);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.astrologer-details-basic {
    flex: 1;
    color: white;
}

.astrologer-details-basic h2 {
    font-size: 2rem;
    margin: 0 0 10px 0;
    color: white;
}

.details-specialization {
    font-size: 1.1rem;
    color: rgba(196, 30, 58, 0.9);
    font-weight: 600;
    margin-bottom: 15px;
}

.details-experience,
.details-languages,
.details-price {
    font-size: 0.95rem;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.85);
}

.details-experience i,
.details-languages i,
.details-price i {
    color: rgba(196, 30, 58, 0.8);
    margin-right: 8px;
    width: 18px;
}

.details-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-top: 15px;
}

.astrologer-details-body {
    padding: 40px;
}

.details-section {
    margin-bottom: 35px;
}

.details-section:last-child {
    margin-bottom: 0;
}

.details-section h3 {
    color: #8b0000;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-section h3 i {
    color: rgba(139, 0, 0, 0.7);
}

.details-section p {
    color: #333;
    line-height: 1.8;
    font-size: 1rem;
}

.details-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.specialty-badge {
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(139, 0, 0, 0.05));
    color: #8b0000;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(139, 0, 0, 0.2);
    transition: all 0.3s;
}

.specialty-badge:hover {
    background: linear-gradient(135deg, #8b0000, #c41e3a);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.details-benefits {
    list-style: none;
    padding: 0;
}

.details-benefits li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #333;
}

.details-benefits li i {
    color: #10b981;
    font-size: 1.1rem;
}

.session-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.session-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(139, 0, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.session-info-item i {
    color: #8b0000;
    font-size: 1.4rem;
}

.session-info-item span {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.astrologer-details-footer {
    padding: 30px 40px;
    background: #f9f9f9;
    border-radius: 0 0 20px 20px;
    border-top: 1px solid rgba(139, 0, 0, 0.1);
}

.btn-book-consult {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(139, 0, 0, 0.3);
}

.btn-book-consult:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(139, 0, 0, 0.4);
}

.btn-book-consult i {
    margin-right: 10px;
}

/* Responsive - Astrologer Details Modal */
@media (max-width: 768px) {
    .astrologer-details-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .astrologer-details-image img {
        width: 120px;
        height: 120px;
    }

    .astrologer-details-basic h2 {
        font-size: 1.5rem;
    }

    .astrologer-details-body {
        padding: 25px 20px;
    }

    .details-section h3 {
        font-size: 1.1rem;
    }

    .session-info-grid {
        grid-template-columns: 1fr;
    }

    .astrologer-details-footer {
        padding: 20px;
    }

    .btn-book-consult {
        font-size: 1.05rem;
        padding: 15px;
    }

    .modal-close-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        top: 15px;
        right: 15px;
    }

    /* Story Section Mobile */
    .story-section {
        padding: 4rem 0;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-image {
        order: -1;
    }

    .story-image img,
    .story-image .story-video {
        height: 350px;
    }

    .story-badge {
        bottom: 15px;
        right: 15px;
        padding: 1rem 1.5rem;
    }

    .story-badge i {
        font-size: 1.5rem;
    }

    .story-badge span {
        font-size: 1rem;
    }

    .story-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .story-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .story-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .stat-item {
        text-align: center;
        padding: 1.5rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.95rem;
    }

    /* Astrologers Section Mobile */
    .astrologers-section {
        padding: 4rem 0;
    }

    .astrologers-section h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .astrologers-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    /* About Hero Mobile */
    .about-hero {
        padding: 6rem 1rem 4rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-icon i {
        font-size: 3rem;
    }

    /* Founder Section Mobile */
    .founder-section {
        padding: 3rem 0;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-image {
        order: -1;
    }

    .founder-img-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .founder-img-wrapper img {
        max-height: 300px;
        border-radius: 12px;
    }

    .founder-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .founder-text p {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.7;
    }

    .founder-expertise {
        flex-direction: column;
        gap: 0.8rem;
    }

    .section-label {
        text-align: center;
        display: block;
    }

    .founder-expertise {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .expertise-item {
        justify-content: center;
    }

    /* Mission Vision Mobile */
    .mission-vision-section {
        padding: 4rem 0;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-box,
    .vision-box {
        padding: 2rem 1.5rem;
    }

    .mission-box h2,
    .vision-box h2 {
        font-size: 1.8rem;
    }

    /* Values Section Mobile */
    .values-section {
        padding: 4rem 0;
    }

    .values-section h2 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    /* Why Choose Us Mobile */
    .why-choose-section {
        padding: 4rem 0;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-text {
        order: 1;
    }

    .why-image {
        order: 2;
        max-width: 100%;
    }

    .why-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .why-number {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .why-info h3 {
        font-size: 1.3rem;
    }
}

/* ============================================
   Service Packages Styling
   ============================================ */

.service-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.service-package-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-package-card:hover::before {
    transform: scaleX(1);
}

.service-package-card:hover {
    border-color: #6366f1;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
    transform: translateY(-4px);
}

.service-package-card.popular {
    border-color: #d4af37;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.service-package-card.popular::before {
    background: linear-gradient(90deg, #d4af37, #f59e0b);
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #d4af37, #f59e0b);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.service-package-header h4 {
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    white-space: nowrap;
}

.service-package-card.popular .service-price {
    color: #d4af37;
}

.service-package-info {
    margin-bottom: 1rem;
}

.service-duration {
    font-size: 0.875rem;
    color: #6366f1;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-duration i {
    margin-right: 0.25rem;
}

.service-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-features li {
    font-size: 0.875rem;
    color: #475569;
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #f1f5f9;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: #10b981;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-support {
    font-size: 0.875rem;
    color: #6366f1;
    font-weight: 500;
    padding: 0.75rem;
    background: #f0f9ff;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
}

.service-support i {
    margin-right: 0.5rem;
}

/* Responsive adjustments for service packages */
@media (max-width: 768px) {
    .service-packages {
        grid-template-columns: 1fr;
    }

    .service-package-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-package-header h4 {
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    .service-price {
        font-size: 1.25rem;
    }
}

/* Update services section cards to show descriptions */
.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 245, 0.95) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8b0000, #d4af37);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.15);
    border-color: rgba(139, 0, 0, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: #8b0000;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s ease;
}

.service-card:hover i {
    transform: scale(1.1) rotateY(360deg);
    color: #d4af37;
}

.service-card h3 {
    font-size: 0.75rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

