/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f9f6f0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
}

a {
    text-decoration: none;
    color: #7a3b2e;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a2a1e;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

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

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: #7a3b2e;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: #4a2a1e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(122, 59, 46, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #7a3b2e;
    color: #7a3b2e;
}

.btn-outline:hover {
    background: #7a3b2e;
    color: #fff;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid #f0d5b0;
    color: #f0d5b0;
}

.btn-outline-light:hover {
    background: #f0d5b0;
    color: #2c1810;
}

.btn-link {
    color: #7a3b2e;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #4a2a1e;
    transform: translateX(5px);
}

/* ========================================
   HEADER
   ======================================== */

header {
    background: linear-gradient(135deg, #2c1810 0%, #4a2a1e 100%);
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo h1 {
    font-size: 28px;
    color: #f0d5b0;
    letter-spacing: 2px;
}

.logo span {
    font-size: 14px;
    color: #d4a574;
    display: block;
    font-weight: 300;
}

.header-contact a {
    color: #f0d5b0;
    margin-left: 25px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.header-contact a:hover {
    color: #fff;
}

.header-contact i {
    margin-right: 8px;
}

/* ========================================
   NAVIGATION
   ======================================== */

nav {
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 20px;
}

.nav-menu li a {
    color: #d4a574;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #fff;
    background: rgba(122, 59, 46, 0.4);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(rgba(44, 24, 16, 0.7), rgba(44, 24, 16, 0.8)), url('images/Psyschic-reader-header.jpeg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 120px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

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

.hero h1 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 20px;
}

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

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

/* ========================================
   SECTION TITLES
   ======================================== */

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    padding: 80px 0;
    background: #fff;
}

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

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    padding: 30px 25px;
    border: 1px solid #f0ebe5;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: #f9f6f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    color: #7a3b2e;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #7a3b2e;
    color: #fff;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

/* ========================================
   SANDAWANA FEATURE
   ======================================== */

.sandawana-feature {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c1810 0%, #4a2a1e 100%);
    color: #f0d5b0;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-badge {
    background: rgba(240, 213, 176, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
    color: #f0d5b0;
}

.feature-content h2 {
    color: #f0d5b0;
    font-size: 38px;
    margin-bottom: 15px;
}

.feature-content p {
    color: #d4a574;
    font-size: 17px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 8px 0;
    color: #b8957a;
    font-size: 16px;
}

.feature-list li i {
    color: #f0d5b0;
    margin-right: 10px;
}

.feature-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.oil-icon {
    width: 250px;
    height: 250px;
    background: rgba(240, 213, 176, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: #f0d5b0;
    border: 3px solid rgba(240, 213, 176, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */

.why-choose {
    padding: 80px 0;
    background: #f9f6f0;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #f9f6f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #7a3b2e;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
    font-size: 14px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
    background: #fff;
    padding: 80px 0;
}

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

.testimonial-card {
    background: #f9f6f0;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #7a3b2e;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #f0d5b0;
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 15px;
    color: #555;
}

.testimonial-card .name {
    font-weight: 700;
    color: #2c1810;
    margin-top: 15px;
    font-style: normal;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c1810, #4a2a1e);
    color: #f0d5b0;
    text-align: center;
}

.cta-section h2 {
    color: #f0d5b0;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    color: #d4a574;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   PAGE BANNER
   ======================================== */

.page-banner {
    background: linear-gradient(135deg, #2c1810, #4a2a1e);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    color: #f0d5b0;
    font-size: 40px;
}

.page-banner p {
    color: #d4a574;
    font-size: 18px;
    max-width: 700px;
    margin: 10px auto 0;
}

/* ========================================
   PAGE CONTENT
   ======================================== */

.page-content {
    padding: 60px 0;
}

.page-content h2 {
    font-size: 30px;
    margin: 40px 0 20px;
    color: #2c1810;
}

.page-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #4a2a1e;
}

.page-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #444;
}

.page-content ul {
    margin: 20px 0 30px 20px;
}

.page-content ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

.content-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-two-col img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ========================================
   SPELLS PAGE
   ======================================== */

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.spells-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.spell-category {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #7a3b2e;
}

.spell-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.spell-category.featured {
    border-left: 4px solid #f0d5b0;
    background: linear-gradient(135deg, #fff 0%, #fdf8f0 100%);
    grid-column: 1 / -1;
}

.spell-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.spell-category-header i {
    font-size: 28px;
    color: #7a3b2e;
    width: 40px;
}

.spell-category-header h3 {
    font-size: 20px;
    margin: 0;
    color: #2c1810;
}

.spell-category p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.spell-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spell-category ul li {
    padding: 6px 0;
    border-bottom: 1px solid #f5f0ec;
    font-size: 14px;
    color: #444;
}

.spell-category ul li:last-child {
    border-bottom: none;
}

.spell-category ul li i {
    color: #7a3b2e;
    margin-right: 10px;
    width: 20px;
}

.cta-box {
    background: linear-gradient(135deg, #2c1810, #4a2a1e);
    color: #f0d5b0;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.cta-box h2 {
    color: #f0d5b0;
    font-size: 30px;
    margin-bottom: 15px;
}

.cta-box p {
    color: #d4a574;
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 17px;
}

.cta-box .btn-outline-light {
    border-color: #f0d5b0;
    color: #f0d5b0;
}

.cta-box .btn-outline-light:hover {
    background: #f0d5b0;
    color: #2c1810;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details {
    margin: 25px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #f9f6f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #7a3b2e;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    font-size: 16px;
}

.contact-item a {
    color: #7a3b2e;
    font-weight: 600;
}

.contact-item small {
    color: #999;
    font-size: 13px;
}

.quick-contact {
    background: #f9f6f0;
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
}

.quick-contact h3 {
    margin-bottom: 15px;
}

.quick-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.contact-form h2 {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c1810;
    font-size: 14px;
}

.form-group .required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #7a3b2e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(122, 59, 46, 0.1);
}

.form-group textarea {
    height: 130px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    font-size: 18px;
    padding: 15px;
}

.submit-btn i {
    margin-right: 10px;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: #1a0e0a;
    color: #d4a574;
    padding: 60px 0 20px;
}

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

.footer-grid h3 {
    color: #f0d5b0;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-grid p {
    font-size: 14px;
    line-height: 1.8;
    color: #b8957a;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
}

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

.footer-grid ul li a {
    color: #b8957a;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-grid ul li a:hover {
    color: #f0d5b0;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #d4a574;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #7a3b2e;
    color: #fff;
    transform: translateY(-3px);
}

.footer-contact a {
    color: #d4a574;
}

.footer-contact a:hover {
    color: #f0d5b0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #8a6a5a;
}

.footer-bottom a {
    color: #b8957a;
}

.footer-bottom a:hover {
    color: #f0d5b0;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 30px;
}

.legal-content ul {
    margin: 15px 0 25px 20px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablets & Small Laptops */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-buttons {
        justify-content: center;
    }

    .feature-list {
        text-align: left;
        max-width: 400px;
        margin: 20px auto;
    }

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

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

    .spell-category.featured {
        grid-column: 1 / -1;
    }

    .content-two-col {
        grid-template-columns: 1fr;
    }

    .content-two-col img {
        order: -1;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }

    .header-contact {
        margin-top: 10px;
    }

    .header-contact a {
        margin: 0 10px;
        font-size: 13px;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero {
        padding: 80px 0;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-banner h1 {
        font-size: 30px;
    }

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

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

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

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .feature-content h2 {
        font-size: 30px;
    }

    .oil-icon {
        width: 180px;
        height: 180px;
        font-size: 70px;
    }

    .feature-buttons {
        flex-direction: column;
        align-items: center;
    }

    .feature-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

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

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

/* Small Mobile Devices */
@media (max-width: 480px) {
    .header-contact a {
        display: block;
        margin: 5px 0;
    }

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

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-card {
        padding: 20px;
    }

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

    .legal-content {
        padding: 20px;
    }

    .spell-category {
        padding: 20px;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}

/* ========================================
   ACCESSIBILITY & UTILITY
   ======================================== */

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #7a3b2e;
    outline-offset: 2px;
}

/* Skip to content (for accessibility) */
.skip-to-content {
    position: absolute;
    top: -9999px;
    left: 50%;
    transform: translateX(-50%);
    background: #7a3b2e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
}

.skip-to-content:focus {
    top: 0;
}

/* Print styles */
@media print {
    header,
    footer,
    .hero,
    .cta-section,
    .sandawana-feature {
        background: #fff !important;
        color: #000 !important;
    }

    .btn,
    .btn-link {
        display: none !important;
    }

    .service-card,
    .spell-category,
    .testimonial-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* ========================================
   SCROLL ANIMATIONS (Optional)
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   LOADING SPINNER (Optional)
   ======================================== */

.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f9f6f0;
    border-top: 4px solid #7a3b2e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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