/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B4513;
    --secondary-color: #DAA520;
    --accent-color: #FF6B35;
    --text-dark: #2C1810;
    --text-light: #666;
    --bg-light: #FFF8F0;
    --bg-white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #8B4513 0%, #DAA520 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6B35 0%, #DAA520 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 12px;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-menu a:hover::after {
    width: 0;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    margin-top: 90px;
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE4C4 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-text h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 10px;
}

.divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-secondary);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
}

.stat h4 {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
}

.stat p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Number Characteristics */
.number-characteristics {
    padding: 100px 0;
    background: var(--bg-white);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.number-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.number-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.number-card.master {
    background: var(--gradient-primary);
    color: white;
}

.number-card.master p {
    color: white;
}

.number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.number-card.master .number {
    color: white;
}

.number-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Calculation Guide */
.calculation-guide {
    padding: 100px 0;
    background: var(--bg-light);
}

.guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.guide-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.guide-box h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-box h3 i {
    font-size: 28px;
}

.guide-box p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.letter-grid {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.letter-item {
    padding: 10px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 15px;
}

.letter-item span {
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 10px;
}

.example-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid var(--primary-color);
}

.example-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.steps {
    padding-left: 20px;
}

.steps li {
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.steps ul {
    margin-top: 10px;
    padding-left: 20px;
}

/* Calculator Section */
.calculator-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.calculator-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.calculator-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.calculate-btn {
    width: 100%;
    margin-top: 20px;
}

.result-box {
    margin-top: 30px;
    padding: 25px;
    background: var(--bg-white);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.result-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.result-box p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.result-box .number-highlight {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin: 20px 0;
}

/* Planets Section */
.planets-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.planets-section .section-header h2 {
    color: white;
}

.planets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.planet-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.planet-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.planet-card i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.planet-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.planet-card p {
    font-size: 16px;
    opacity: 0.9;
}

/* Days Section */
.days-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.day-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.day-card:hover {
    transform: translateY(-10px);
}

.day-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.day-card i {
    font-size: 24px;
    color: var(--secondary-color);
}

.day-card p {
    font-size: 16px;
    color: var(--text-light);
}

/* Compatibility Section */
.compatibility-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.compatibility-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.compatibility-card:hover {
    transform: translateY(-10px);
}

.compat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.compatibility-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.compatibility-card p {
    font-size: 16px;
    color: var(--text-light);
}

/* Popular Reports Section */
.popular-reports {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff8f0 100%);
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.report-card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.report-card:hover::before {
    transform: scaleX(1);
}

.report-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.report-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.report-card:hover .report-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.report-icon i {
    font-size: 36px;
    color: white;
}

.report-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 60px;
}

.btn-report {
    background: var(--gradient-secondary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-report:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.report-price {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(139, 69, 19, 0.05));
    border-radius: 10px;
    flex-wrap: wrap;
}

.report-price .price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 16px;
}

.report-price .delivery {
    color: var(--text-light);
    font-size: 12px;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .reports-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .report-card h3 {
        min-height: auto;
    }
    
    .report-card p {
        min-height: auto;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 36px;
    color: white;
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-service {
    background: var(--gradient-secondary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 32px;
    color: var(--primary-color);
    width: 50px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    background: var(--bg-white);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: none;
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .guide-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-text h2 {
        font-size: 36px;
    }

    .hero-text h3 {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 40px 0;
        min-height: auto;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .hero-text h3 {
        font-size: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .numbers-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .calculator-tabs {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 26px;
    }

    .logo-text h1 {
        font-size: 18px;
    }

    .logo img {
        height: 50px;
    }
}

/* Service Pages Styles */
.page-hero {
    margin-top: 90px;
    padding: 80px 0;
    background: linear-gradient(135deg, #8B4513 0%, #DAA520 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.breadcrumb {
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.service-detail {
    padding: 80px 0;
    background: var(--bg-white);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.main-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary-color);
    margin: 40px 0 20px;
}

.main-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.main-content h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 20px 0 10px;
}

.main-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.main-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.main-content ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.service-image {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.highlight-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.highlight-box h3 {
    margin-top: 0;
}

.planets-detail,
.houses-grid {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.planets-detail {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.houses-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.planet-item,
.house-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
}

.planet-item h4,
.house-item h4 {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.planet-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.house-number {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-steps {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.step h3 {
    margin-top: 0;
}

.cta-box {
    background: var(--gradient-primary);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    color: white;
    margin-top: 0;
}

.cta-box p {
    color: white;
    opacity: 0.95;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary-color);
    margin-top: 20px;
}

.testimonial-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
}

.testimonial-box i {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-box p {
    font-style: italic;
    margin: 20px 0 15px;
    padding-left: 30px;
}

.testimonial-author {
    padding-left: 30px;
}

.faq-section {
    margin: 30px 0;
}

.faq-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.faq-item h4 {
    margin-top: 0;
    color: var(--primary-color);
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.service-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 10px;
}

.service-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-list a:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    padding-left: 15px;
}

.service-list i {
    color: var(--primary-color);
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.benefits-list i {
    color: var(--secondary-color);
}

.cta-widget {
    text-align: center;
    background: var(--gradient-primary);
    color: white;
}

.cta-widget h3 {
    color: white;
    border-bottom-color: white;
}

.cta-widget p {
    color: white;
    opacity: 0.95;
    margin-bottom: 20px;
}

/* Gemstone Specific Styles */
.gemstone-list {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

.gem-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 15px;
}

.gem-visual {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gem-visual i {
    font-size: 40px;
    color: white;
}

.gem-details h4 {
    margin-top: 0;
}

.gem-details p {
    margin-bottom: 8px;
}

/* Marriage Matching Styles */
.guna-list,
.dosha-list {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.guna-item,
.dosha-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
}

.guna-item h4,
.dosha-item h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.dosha-item i {
    color: #E03131;
    margin-right: 10px;
}

/* Career Styles */
.career-planets {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.planet-career {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
}

.planet-career h4 {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.planet-career i {
    font-size: 24px;
    color: var(--primary-color);
}

.house-career-list {
    background: var(--bg-light);
    padding: 20px 20px 20px 45px;
    border-radius: 10px;
}

.house-career-list li {
    margin-bottom: 10px;
}

.comparison-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.comparison-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
}

.comparison-item h3 {
    margin-top: 0;
    text-align: center;
}

.comparison-item i {
    font-size: 32px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 15px;
}

/* Remedies Styles */
.mantra-list {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.mantra-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
}

.mantra-item h4 {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mantra-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.sanskrit {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 10px 0;
}

.puja-list,
.yantra-grid {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.puja-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.yantra-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.puja-item,
.yantra-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
}

.puja-item h4,
.yantra-item h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.puja-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

.daily-remedies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.remedy-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
}

.remedy-item h4 {
    margin-top: 0;
}

/* Responsive for Service Pages */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 36px;
    }

    .page-hero p {
        font-size: 18px;
    }

    .main-content h2 {
        font-size: 28px;
    }

    .gem-item {
        grid-template-columns: 1fr;
    }

    .comparison-box {
        grid-template-columns: 1fr;
    }
}

/* Navagraha Interactive Section */
.navagraha-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
}

.section-subtitle {
    color: white;
    font-size: 18px;
    margin-top: 15px;
    opacity: 0.95;
}

.planet-grid-interactive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.planet-item-interactive {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.planet-item-interactive:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.planet-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    color: white;
    transition: all 0.3s ease;
}

.planet-item-interactive:hover .planet-icon {
    transform: scale(1.1) rotate(360deg);
}

.planet-item-interactive h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.planet-item-interactive p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Planet Modal */
.planet-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Planet Detail Content Styles */
.planet-detail-header {
    text-align: center;
    margin-bottom: 30px;
}

.planet-detail-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 45px;
    color: white;
}

.planet-detail-header h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.planet-detail-header .sanskrit-name {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.planet-detail-body {
    line-height: 1.8;
}

.planet-detail-body h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 25px 0 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.planet-detail-body p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.planet-detail-body ul {
    margin: 15px 0;
    padding-left: 30px;
}

.planet-detail-body ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
    position: relative;
    list-style: none;
}

.planet-detail-body ul li:before {
    content: "✦";
    position: absolute;
    left: -25px;
    color: var(--primary-color);
}

.mantra-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
}

.mantra-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.mantra-box .sanskrit {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.mantra-box .translation {
    font-size: 14px;
    opacity: 0.9;
    font-style: italic;
}

/* Booking Confirmation Modal */
.booking-confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(50px);
    }
}

.booking-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.booking-success-header {
    text-align: center;
    margin-bottom: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.booking-success-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.booking-success-header p {
    font-size: 16px;
    color: var(--text-light);
}

.booking-details {
    margin-bottom: 40px;
}

.detail-box {
    background: linear-gradient(135deg, #8B4513 0%, #DAA520 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 25px;
}

.detail-box h3 {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-id {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.detail-box small {
    font-size: 12px;
    opacity: 0.8;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.detail-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.detail-item h4 {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.detail-item p {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.booking-next-steps {
    margin-bottom: 40px;
}

.booking-next-steps h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.step-content h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.booking-contact-info {
    background: #f0f4ff;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #667eea;
    margin-bottom: 25px;
}

.booking-contact-info p {
    margin: 10px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.booking-contact-info strong {
    color: var(--primary-color);
}

.booking-modal-content .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .booking-modal-content {
        padding: 25px;
        border-radius: 15px;
    }

    .booking-success-header h2 {
        font-size: 24px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }

    .booking-id {
        font-size: 20px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .step {
        gap: 15px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }

    .step-content h4 {
        font-size: 14px;
    }

    .step-content p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .planet-grid-interactive {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 25px;
    }
    
    .planet-detail-header h2 {
        font-size: 24px;
    }
}
