/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0c0c1d;
    color: #f0e6d6;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Navigation */
header {
    background-color: rgba(12, 12, 29, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #c19a6b;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.logo i {
    margin-right: 10px;
    font-size: 28px;
}

.logo:hover {
    color: #d4b48c;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #f0e6d6;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover,
nav ul li a.active {
    color: #c19a6b;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #c19a6b;
    left: 0;
    bottom: 0;
    transition: width 0.3s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #c19a6b;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: #d4b48c;
}

/* Header controls (mobile menu and other controls) */
.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}
.moving-ads {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 15px 0;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
    border-top: 2px solid #c19a6b;
    border-bottom: 2px solid #c19a6b;
}

.ads-container {
    display: flex;
    animation: slideAds 25s linear infinite;
    white-space: nowrap;
}

.ad-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    min-width: 400px;
    font-size: 16px;
    font-weight: 500;
    color: #f0e6d6;
    letter-spacing: 0.5px;
}

.ad-item i {
    color: #c19a6b;
    font-size: 20px;
    flex-shrink: 0;
}

.ad-item span {
    flex: 1;
}

/* Duplicate ads for continuous scrolling */
.ads-container .ad-item:nth-child(1) {
    animation-delay: 0s;
}

.ads-container .ad-item:nth-child(2) {
    animation-delay: 5s;
}

.ads-container .ad-item:nth-child(3) {
    animation-delay: 10s;
}

.ads-container .ad-item:nth-child(4) {
    animation-delay: 15s;
}

.ads-container .ad-item:nth-child(5) {
    animation-delay: 20s;
}

@keyframes slideAds {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-2000px);
    }
}

.moving-ads:hover .ads-container {
    animation-play-state: paused;
}
    border: none;
    color: #f0e6d6;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Sections */
.hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideshow 16s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; }
.slide:nth-child(3) { animation-delay: 8s; }
.slide:nth-child(4) { animation-delay: 12s; }

@keyframes slideshow {
    0%, 25% { opacity: 1; }
    30%, 100% { opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }
    
    .hero-content {
        padding: 20px;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #c19a6b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
    color: #f0e6d6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-hero {
    background: linear-gradient(rgba(12, 12, 29, 0.8), rgba(12, 12, 29, 0.9)), url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #c19a6b;
}

.page-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #c19a6b;
    color: #0c0c1d;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(193, 154, 107, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #d4b48c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(193, 154, 107, 0.4);
}

.cta-button.secondary {
    background-color: transparent;
    color: #c19a6b;
    border: 2px solid #c19a6b;
}

.cta-button.secondary:hover {
    background-color: rgba(193, 154, 107, 0.1);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #c19a6b;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: #c19a6b;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Home Page Styles */
.featured-services {
    padding: 100px 0;
}

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

.service-card {
    background-color: #1a1a2e;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 48px;
    color: #c19a6b;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #c19a6b;
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    color: #c19a6b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #d4b48c;
}

.testimonials {
    padding: 100px 0;
    background-color: #0f0f1f;
}

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

.testimonial-card {
    background-color: #1a1a2e;
    border-radius: 10px;
    padding: 30px;
    border-left: 5px solid #c19a6b;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author h4 {
    color: #c19a6b;
    margin-bottom: 5px;
}

.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(12, 12, 29, 0.9), rgba(12, 12, 29, 0.9)), url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #c19a6b;
}

.cta-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* About Page Styles */
.about-page {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #c19a6b;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 18px;
}

.inspiration-link {
    color: #c19a6b;
    text-decoration: none;
    font-weight: 600;
}

.inspiration-link:hover {
    text-decoration: underline;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    background-color: #1a1a2e;
    padding: 15px;
    text-align: center;
    font-style: italic;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mission, .vision {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 10px;
}

.mission h3, .vision h3 {
    color: #c19a6b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.mission h3 i, .vision h3 i {
    margin-right: 10px;
}

.team-section {
    margin-bottom: 80px;
}

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

.team-member {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    font-size: 80px;
    color: #c19a6b;
    margin-bottom: 20px;
}

.team-member h3 {
    color: #c19a6b;
    margin-bottom: 5px;
}

.member-title {
    color: #d4b48c;
    margin-bottom: 15px;
    font-weight: 600;
}

.values-section {
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.value-card {
    background-color: #1a1a2e;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
}

.value-icon {
    font-size: 48px;
    color: #c19a6b;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #c19a6b;
    margin-bottom: 15px;
}

/* Readings Page Styles */
.readings-page {
    padding: 100px 0;
}

.reading-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.reading-detail.reverse {
    direction: rtl;
}

.reading-detail.reverse .reading-content {
    direction: ltr;
}

.reading-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #c19a6b;
    display: flex;
    align-items: center;
}

.reading-content h2 i {
    margin-right: 15px;
}

.reading-benefits {
    margin: 30px 0;
}

.reading-benefits h3 {
    color: #d4b48c;
    margin-bottom: 15px;
}

.reading-benefits ul {
    list-style-position: inside;
    margin-left: 20px;
}

.reading-benefits li {
    margin-bottom: 10px;
}

.reading-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.reading-image img {
    width: 100%;
    height: auto;
    display: block;
}

.reading-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.option-card {
    background-color: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
    position: relative;
}

.option-card.featured {
    border: 2px solid #c19a6b;
}

.popular-tag {
    position: absolute;
    top: -10px;
    right: 10px;
    background-color: #c19a6b;
    color: #0c0c1d;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.option-card h4 {
    color: #c19a6b;
    margin-bottom: 10px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #f0e6d6;
    margin-bottom: 10px;
}

.pricing-info {
    background-color: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.astrology-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.type-card {
    background-color: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
}

.type-card h4 {
    color: #c19a6b;
    margin-bottom: 10px;
}

.other-readings {
    margin-bottom: 80px;
}

.readings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.reading-card {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.reading-card:hover {
    transform: translateY(-12px);
    border-color: #c19a6b;
    box-shadow: 0 15px 35px rgba(193, 154, 107, 0.2);
}

.reading-icon {
    font-size: 48px;
    color: #c19a6b;
    margin-bottom: 20px;
}

.reading-card h3 {
    color: #c19a6b;
    margin-bottom: 15px;
}

.reading-price {
    color: #d4b48c;
    font-weight: 600;
    margin-top: 15px;
    font-size: 18px;
}

.booking-cta {
    text-align: center;
    background-color: #1a1a2e;
    padding: 60px;
    border-radius: 10px;
}

.booking-cta h2 {
    color: #c19a6b;
    margin-bottom: 15px;
}

.booking-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Guidance Page Styles */
.guidance-page {
    padding: 100px 0;
}

.guidance-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.guidance-section.reverse {
    direction: rtl;
}

.guidance-section.reverse .guidance-content {
    direction: ltr;
}

.guidance-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #c19a6b;
    display: flex;
    align-items: center;
}

.guidance-content h2 i {
    margin-right: 15px;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.technique-card {
    background-color: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
}

.technique-card h3 {
    color: #c19a6b;
    margin-bottom: 10px;
}

.technique-card ul {
    list-style-position: inside;
    margin-top: 15px;
}

.technique-card li {
    margin-bottom: 5px;
    font-size: 14px;
}

.guidance-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.guidance-image img {
    width: 100%;
    height: auto;
    display: block;
}

.healing-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.method-card {
    background-color: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
}

.method-card h3 {
    color: #c19a6b;
    margin-bottom: 10px;
}

.method-benefit {
    margin-top: 15px;
    color: #d4b48c;
}

.session-info {
    background-color: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.session-info h3 {
    color: #c19a6b;
    margin-bottom: 15px;
}

.cleansing-techniques {
    margin: 30px 0;
}

.technique {
    background-color: #1a1a2e;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.technique h4 {
    color: #c19a6b;
    margin-bottom: 5px;
}

.workshop-info {
    margin-top: 40px;
}

.workshop-card {
    background-color: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
    max-width: 500px;
}

.workshop-card h4 {
    color: #c19a6b;
    margin-bottom: 15px;
}

.workshop-card p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.workshop-card i {
    margin-right: 10px;
    width: 20px;
}

.life-path-section {
    margin-bottom: 80px;
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.path-card {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

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

.path-icon {
    font-size: 48px;
    color: #c19a6b;
    margin-bottom: 20px;
}

.path-card h3 {
    color: #c19a6b;
    margin-bottom: 15px;
}

.resources-section {
    margin-bottom: 80px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.resource-card {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 10px;
}

.resource-card h3 {
    color: #c19a6b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.resource-card h3 i {
    margin-right: 15px;
}

.resource-link {
    display: inline-block;
    margin-top: 15px;
    color: #c19a6b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.resource-link:hover {
    color: #d4b48c;
}

/* Contact Page Styles */
.contact-page {
    padding: 100px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #c19a6b;
}

.contact-methods {
    margin: 40px 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.method-icon {
    font-size: 32px;
    color: #c19a6b;
    margin-right: 20px;
    min-width: 40px;
}

.method-details h3 {
    color: #c19a6b;
    margin-bottom: 5px;
}

.method-note {
    color: #999;
    font-size: 14px;
    margin-top: 5px;
}

.business-hours {
    background-color: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.business-hours h3 {
    color: #c19a6b;
    margin-bottom: 15px;
}

.hours-grid {
    display: grid;
    gap: 10px;
}

.day {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #33334d;
}

.day:last-child {
    border-bottom: none;
}

.emergency-contact {
    background-color: rgba(193, 154, 107, 0.1);
    border-left: 5px solid #c19a6b;
    padding: 25px;
    border-radius: 0 10px 10px 0;
}

.emergency-contact h3 {
    color: #c19a6b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.emergency-contact h3 i {
    margin-right: 10px;
}

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #c19a6b;
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #f0e6d6;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #1a1a2e;
    border: 1px solid #33334d;
    border-radius: 5px;
    color: #f0e6d6;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c19a6b;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
}

.submit-btn {
    background-color: #c19a6b;
    color: #0c0c1d;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #d4b48c;
}

.form-note {
    background-color: rgba(193, 154, 107, 0.1);
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
}

.form-note p {
    display: flex;
    align-items: flex-start;
}

.form-note i {
    margin-right: 10px;
    color: #c19a6b;
    margin-top: 3px;
}

.faq-section {
    margin-bottom: 80px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #1a1a2e;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    color: #f0e6d6;
    font-size: 20px;
}

.faq-question i {
    color: #c19a6b;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.map-section {
    margin-bottom: 80px;
}

.map-container {
    background-color: #1a1a2e;
    border-radius: 10px;
    padding: 60px;
    text-align: center;
}

.map-placeholder i {
    font-size: 80px;
    color: #c19a6b;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    color: #c19a6b;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #0a0a16;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #c19a6b;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #f0e6d6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #c19a6b;
}

.footer-section ul li i {
    margin-right: 10px;
    width: 20px;
    color: #c19a6b;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #1a1a2e;
    color: #c19a6b;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #c19a6b;
    color: #0c0c1d;
    transform: translateY(-5px);
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid #33334d;
    text-align: center;
    font-size: 16px;
    color: #999;
}

.copyright a {
    color: #c19a6b;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
    z-index: 100;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.7);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #1a1a2e;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: modalFade 0.5s;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #c19a6b;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #f0e6d6;
}

.modal h2 {
    color: #c19a6b;
    margin-bottom: 20px;
    font-size: 28px;
}

.modal-button {
    background-color: #c19a6b;
    color: #0c0c1d;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    width: 100%;
    margin-top: 20px;
}

.modal-button:hover {
    background-color: #d4b48c;
}

.success-icon {
    font-size: 80px;
    color: #4CAF50;
    text-align: center;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

/* Pricing Styles */
.pricing-info {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.pricing-info h3,
.pricing-info h4 {
    color: #c19a6b;
    margin-bottom: 20px;
}

.price-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.price-item {
    background-color: #0c0c1d;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #c19a6b;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-item strong {
    color: #c19a6b;
    font-size: 16px;
}

.price-item span {
    color: #d4b48c;
    font-weight: 600;
    font-size: 15px;
}

.price {
    color: #c19a6b;
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
    display: inline-block;
}

/* Image Captions */
.image-caption {
    background-color: #1a1a2e;
    padding: 15px;
    text-align: center;
    font-style: italic;
    color: #d4b48c;
    margin-top: 10px;
    border-radius: 0 0 10px 10px;
}

/* Contact Links */
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #c19a6b;
    color: #0c0c1d;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-link:hover {
    background-color: #d4b48c;
    transform: translateX(5px);
}

/* Service Links */
.service-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: rgba(193, 154, 107, 0.2);
    color: #c19a6b;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #c19a6b;
}

.service-link:hover {
    background-color: #c19a6b;
    color: #0c0c1d;
}

/* Path Links */
.path-link {
    display: inline-block;
    margin-top: 15px;
    color: #c19a6b;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid #c19a6b;
    transition: all 0.3s;
}

.path-link:hover {
    background-color: #c19a6b;
    color: #0c0c1d;
}

/* Workshop Links */
.workshop-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #c19a6b;
    color: #0c0c1d;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.workshop-link:hover {
    background-color: #d4b48c;
    transform: translateY(-3px);
}

/* Enhanced Button Styles */
.submit-btn {
    background-color: #c19a6b;
    color: #0c0c1d;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(193, 154, 107, 0.3);
}

.submit-btn:hover {
    background-color: #d4b48c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(193, 154, 107, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Enhanced CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Contact Form Note Styling */
.form-note {
    background-color: #1a1a2e;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid #c19a6b;
}

.form-note p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.form-note i {
    margin-right: 10px;
    color: #c19a6b;
}

/* Why Choose Section */
.why-choose-section {
    margin: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.benefit-card {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

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

.benefit-icon {
    font-size: 48px;
    color: #c19a6b;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #c19a6b;
    margin-bottom: 15px;
}

/* Enhanced Reading Detail Styles */
.reading-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.reading-detail.reverse {
    direction: rtl;
}

.reading-detail.reverse .reading-content {
    direction: ltr;
}

.reading-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #c19a6b;
    display: flex;
    align-items: center;
}

.reading-content h2 i {
    margin-right: 15px;
}

.reading-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.reading-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Enhanced Option Cards */
.option-card {
    background-color: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.option-card:hover {
    border-color: #c19a6b;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(193, 154, 107, 0.2);
}

.option-card.featured {
    border-color: #c19a6b;
    background-color: rgba(193, 154, 107, 0.1);
}

.popular-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #c19a6b;
    color: #0c0c1d;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .moving-ads {
        padding: 10px 0;
    }

    .ad-item {
        min-width: 300px;
        font-size: 14px;
        padding: 0 20px;
    }

    @keyframes slideAds {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-1500px);
        }
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 46px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .about-content,
    .reading-detail,
    .guidance-section,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .reading-detail.reverse,
    .guidance-section.reverse {
        direction: ltr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    /* Header and Navigation */
    header {
        padding: 15px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo i {
        font-size: 24px;
        margin-right: 8px;
    }
    
    nav ul {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, rgba(12, 12, 29, 0.99) 0%, rgba(26, 26, 46, 0.99) 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        z-index: 999;
        overflow-y: auto;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid rgba(193, 154, 107, 0.2);
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        font-size: 22px;
        padding: 20px 0;
        margin: 0;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        padding: 10px 15px;
    }
    
    /* Hero Section */
    .hero {
        height: 70vh;
        margin-top: 70px;
    }
    
    .hero-content {
        padding: 20px;
        max-width: 95%;
    }
    
    .hero h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 12px 30px;
        font-size: 16px;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .page-hero p {
        font-size: 18px;
        padding: 0 15px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    /* Grids - Single Column */
    .services-grid,
    .testimonials-grid,
    .team-grid,
    .values-grid,
    .readings-grid,
    .path-grid,
    .resources-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reading-options,
    .astrology-types,
    .techniques-grid,
    .healing-methods,
    .price-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* About Page */
    .about-content,
    .reading-detail,
    .guidance-section,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .reading-detail.reverse,
    .guidance-section.reverse {
        direction: ltr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Moving Ads */
    .moving-ads {
        padding: 10px 0;
        margin-top: 70px;
    }
    
    .ad-item {
        min-width: 300px;
        font-size: 14px;
        padding: 0 20px;
    }
    
    @keyframes slideAds {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-1500px);
        }
    }
    
    /* Cards */
    .service-card,
    .testimonial-card,
    .team-member,
    .value-card,
    .reading-card,
    .path-card,
    .resource-card,
    .option-card,
    .type-card,
    .technique-card,
    .method-card {
        padding: 20px;
    }
    
    .service-icon,
    .path-icon,
    .benefit-icon,
    .value-icon,
    .reading-icon,
    .member-image {
        font-size: 40px;
    }
    
    .service-card h3,
    .team-member h3,
    .reading-card h3,
    .path-card h3 {
        font-size: 22px;
    }
    
    .reading-content h2,
    .guidance-content h2,
    .about-text h2,
    .contact-info h2,
    .contact-form-section h2 {
        font-size: 32px;
    }
    
    /* Forms */
    .contact-form {
        margin-top: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    /* Contact Methods */
    .contact-method {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 25px;
    }
    
    .method-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 20px;
    }
    
    /* Modal */
    .modal-content {
        padding: 30px 20px;
        max-width: 95%;
        width: 100%;
    }
    
    .modal h2 {
        font-size: 26px;
    }
    
    /* Buttons */
    .contact-link,
    .service-link,
    .path-link,
    .workshop-link {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px 15px;
    }
    
    /* Padding adjustments */
    .container {
        padding: 0 20px;
    }
    
    .featured-services,
    .readings-page,
    .guidance-page,
    .about-page,
    .contact-page {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .booking-cta,
    .map-container {
        padding: 40px 20px;
    }
    
    /* FAQ */
    .faq-container {
        max-width: 100%;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 18px;
    }
    
    /* Images */
    .about-image,
    .reading-image,
    .guidance-image {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    /* Header */
    header {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo i {
        font-size: 22px;
    }
    
    .mobile-menu-btn {
        font-size: 24px;
        padding: 8px 12px;
    }
    
    /* Navigation */
    nav ul {
        top: 60px;
        height: calc(100vh - 60px);
        padding-top: 30px;
    }
    
    nav ul li a {
        font-size: 20px;
        padding: 18px 0;
    }
    
    /* Moving Ads */
    .moving-ads {
        margin-top: 60px;
    }
    
    .ad-item {
        min-width: 280px;
        font-size: 13px;
        padding: 0 15px;
    }
    
    @keyframes slideAds {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-1400px);
        }
    }
    
    /* Hero Section */
    .hero {
        height: 60vh;
        margin-top: 60px;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .hero h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 100px 0 50px;
    }
    
    .page-hero h1 {
        font-size: 32px;
        margin-bottom: 8px;
    }
    
    .page-hero p {
        font-size: 16px;
        padding: 0 10px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 32px;
        margin-bottom: 35px;
    }
    
    .section-title::after {
        width: 80px;
    }
    
    /* Grids */
    .services-grid,
    .testimonials-grid,
    .team-grid,
    .values-grid,
    .readings-grid,
    .path-grid,
    .resources-grid,
    .benefits-grid,
    .reading-options,
    .astrology-types,
    .techniques-grid,
    .healing-methods,
    .price-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Cards */
    .service-card,
    .testimonial-card,
    .team-member,
    .value-card,
    .reading-card,
    .path-card,
    .resource-card,
    .option-card,
    .type-card,
    .technique-card,
    .method-card {
        padding: 15px;
    }
    
    .service-card h3,
    .team-member h3,
    .reading-card h3,
    .path-card h3 {
        font-size: 20px;
    }
    
    .service-icon,
    .path-icon,
    .benefit-icon,
    .value-icon,
    .reading-icon,
    .member-image,
    .map-placeholder i {
        font-size: 36px;
    }
    
    /* Text */
    .reading-content h2,
    .guidance-content h2,
    .about-text h2,
    .contact-info h2,
    .contact-form-section h2,
    .cta-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .reading-content p,
    .guidance-content p,
    .about-text p {
        font-size: 16px;
    }
    
    /* Forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px;
        font-size: 16px;
    }
    
    .form-group label {
        font-size: 15px;
    }
    
    .submit-btn,
    .modal-button {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    /* Contact Links */
    .contact-link,
    .service-link,
    .path-link,
    .workshop-link {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 15px;
        right: 15px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section ul li {
        font-size: 14px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Modal */
    .modal-content {
        padding: 25px 15px;
    }
    
    .modal h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .success-icon {
        font-size: 70px;
        margin-bottom: 15px;
    }
    
    /* Business Hours */
    .business-hours {
        padding: 20px;
    }
    
    .hours-grid {
        gap: 8px;
    }
    
    .day {
        flex-direction: column;
        padding-bottom: 8px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 50px 15px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    /* Booking CTA */
    .booking-cta {
        padding: 40px 15px;
    }
    
    .booking-cta h2 {
        font-size: 28px;
    }
    
    /* Map Container */
    .map-container {
        padding: 40px 15px;
    }
    
    .map-placeholder h3 {
        font-size: 18px;
    }
    
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    .featured-services,
    .readings-page,
    .guidance-page,
    .about-page,
    .contact-page {
        padding: 50px 0;
    }
    
    /* Testimonial Card */
    .testimonial-card {
        border-left: 4px solid #c19a6b;
    }
    
    .testimonial-content p {
        font-size: 15px;
    }
    
    /* Emergency Contact */
    .emergency-contact {
        border-left: 4px solid #c19a6b;
        padding: 20px;
        margin-top: 20px;
    }
    
    .emergency-contact h3 {
        font-size: 18px;
    }
}

/* Extra Small Devices (Under 360px) */
@media (max-width: 360px) {
    .logo {
        font-size: 16px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 12px;
        right: 12px;
    }
}