/**
 * Papa Tito Ngeni Static Site - Complete Stylesheet
 * Converted from WordPress Astra theme
 * Removed all WordPress dependencies and optimized for static site
 */

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1d1d23;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #db9423;
    --primary-hover: #ed7a00;
    --secondary-color: #2c3e50;
    --text-color: #1d1d23;
    --text-light: #666;
    --background-color: #ffffff;
    --surface-color: #f8f9fa;
    --border-color: #e5e5e5;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Abril Fatface', cursive;
    --font-secondary: 'Alata', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 2rem;
    line-height: 1.3;
}

h4 {
    font-size: 1.5rem;
    line-height: 1.4;
}

h5 {
    font-size: 1.25rem;
    line-height: 1.4;
}

h6 {
    font-size: 1.125rem;
    line-height: 1.5;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover, a:focus {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* ===== LAYOUT COMPONENTS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
}

/* ===== HEADER STYLES ===== */
.site-header {
    background: linear-gradient(135deg, var(--background-color) 0%, #f8f9fa 100%);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(219, 148, 35, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Header overlay removed - background moved to hero section */

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
    position: relative;
    z-index: 3;
}

.site-branding {
    display: flex;
    align-items: center;
    flex: 1;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-normal);
}

.site-logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15)) 
            brightness(1.1) 
            contrast(1.15);
    transition: var(--transition-normal);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
}

.logo-image:hover {
    filter: drop-shadow(0 6px 12px rgba(219, 148, 35, 0.4)) 
            brightness(1.15) 
            contrast(1.2);
    background: rgba(219, 148, 35, 0.1);
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(219, 148, 35, 0.2);
}

/* Site title and description styles removed - using logo only */

/* ===== NAVIGATION STYLES ===== */
.main-navigation {
    flex: 1;
    text-align: center;
    min-width: 0;
    max-width: 800px;
    margin: 0 auto;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    max-width: 100%;
}

.main-navigation a {
    color: var(--text-color);
    font-weight: 600;
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    position: relative;
    text-decoration: none;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
}

.main-navigation a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.main-navigation a:hover::before,
.main-navigation .current-menu-item a::before {
    width: 80%;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--primary-color);
    background: rgba(219, 148, 35, 0.08);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle:hover {
    background: rgba(219, 148, 35, 0.15);
    transform: scale(1.05);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.mobile-menu-toggle:hover .hamburger span {
    background: var(--primary-color);
}

/* Tablet Navigation Styles */
@media screen and (max-width: 1024px) {
    .main-navigation ul {
        gap: 0.6rem;
    }
    
    .main-navigation a {
        padding: 0.45rem 0.7rem;
        font-size: 0.8rem;
    }
}

/* Small Desktop Navigation Styles */
@media screen and (max-width: 900px) {
    .main-navigation ul {
        gap: 0.4rem;
    }
    
    .main-navigation a {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .site-branding {
        flex: 1;
        min-width: 0;
    }
    
    .site-logo {
        flex-shrink: 0;
    }
    
    .logo-image {
        height: 70px;
        max-width: 220px;
    }
    
    /* Site title wrapper removed - using logo only */
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }
    
    .main-navigation {
        order: 4;
        width: 100%;
        margin-top: 1rem;
    }
    
    .main-navigation ul {
        display: none;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: 1rem 0;
        margin: 0;
        gap: 0;
        border: 1px solid rgba(219, 148, 35, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .main-navigation.active ul {
        display: flex;
    }
    
    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid rgba(219, 148, 35, 0.1);
    }
    
    .main-navigation li:last-child {
        border-bottom: none;
    }
    
    .main-navigation a {
        display: block;
        padding: 1rem 1.5rem;
        color: var(--text-color);
        text-decoration: none;
        transition: var(--transition-fast);
        border-radius: 0;
    }
    
    .main-navigation a::before {
        display: none;
    }
    
    .main-navigation a:hover,
    .main-navigation .current-menu-item a {
        background: rgba(219, 148, 35, 0.1);
        color: var(--primary-color);
        transform: none;
    }
}

@media screen and (max-width: 480px) {
    .header-content {
        padding: 0.75rem 0;
    }
    
    .logo-image {
        height: 60px;
        max-width: 180px;
    }
    
    .site-branding {
        gap: 0.75rem;
    }
}

/* Hero Section Mobile Responsive */
@media screen and (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding: 4rem 0;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        margin: 1rem auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        min-height: 50vh;
        padding: 3rem 0;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
        margin: 0.5rem auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ===== BUTTON STYLES ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: 
        linear-gradient(135deg, 
            rgba(248, 249, 250, 0.8) 0%, 
            rgba(233, 236, 239, 0.7) 50%,
            rgba(248, 249, 250, 0.8) 100%),
        url('../assets/images/header-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.4) 100%);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

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

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.service-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.author-location {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

/* ===== FOOTER STYLES ===== */
.site-footer {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.copyright a {
    color: var(--primary-color);
}

/* ===== WHATSAPP CHAT BUTTON ===== */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    background: #128c7e;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    z-index: 1000;
    transition: var(--transition-normal);
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-slow);
}

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

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

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

.fade-in-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: var(--transition-slow);
}

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

/* ===== FORM STYLES ===== */
.contact-form {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

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

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--background-color);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(219, 148, 35, 0.1);
}

.form-control.error {
    border-color: var(--error-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

/* ===== PAGE SPECIFIC STYLES ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.hero-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.timeline-year {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 120px;
}

.timeline-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: var(--text-light);
}

.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.principle {
    text-align: center;
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: var(--radius-lg);
}

.principle i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.principle h4 {
    margin-bottom: 0.5rem;
}

.principle p {
    font-size: 0.875rem;
    color: var(--text-light);
}

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

.achievement {
    text-align: center;
    padding: 2rem;
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.achievement:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.achievement-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.achievement-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.achievement-description {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Contact Page Styles */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method {
    background: var(--background-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.faq-question {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.6;
}

/* Herbalist Page Styles */
.herbal-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.herbal-category {
    background: var(--background-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.herbal-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.herb-list {
    list-style: none;
    padding: 0;
}

.herb-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.herb-list li:last-child {
    border-bottom: none;
}

.remedies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.remedy-card {
    background: var(--background-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.remedy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.remedy-content {
    padding: 1.5rem;
}

.remedy-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.remedy-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.remedy-ingredients h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.remedy-ingredients ul {
    list-style: none;
    padding: 0;
}

.remedy-ingredients li {
    padding: 0.25rem 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

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

.guideline-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: var(--radius-lg);
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 60px;
    text-align: center;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Divine Healing Page Styles */
.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== LOVE SPELLS PAGE STYLES ===== */
.spell-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.spell-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.875rem;
    position: relative;
    padding-left: 1.5rem;
}

.spell-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

/* Love spell specific animations */
@keyframes heartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.service-card:hover .service-icon i.fa-heart,
.service-card:hover .service-icon i.fa-heart-broken,
.service-card:hover .service-icon i.fa-heart-circle-plus,
.service-card:hover .service-icon i.fa-heart-pulse,
.service-card:hover .service-icon i.fa-heart-crack {
    animation: heartPulse 1s ease-in-out infinite;
}

/* Love spell testimonials */
.testimonial-card {
    background: linear-gradient(135deg, rgba(219, 148, 35, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.testimonial-card::before {
    content: '💕';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

/* Love spell process steps */
.process-step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    border: 1px solid rgba(219, 148, 35, 0.2);
    box-shadow: 0 4px 15px rgba(219, 148, 35, 0.1);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    box-shadow: 0 4px 15px rgba(219, 148, 35, 0.3);
}

/* Love spell FAQ */
.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(219, 148, 35, 0.1);
}

.faq-question {
    color: var(--primary-color);
    font-weight: 600;
}

/* Love spell CTA section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
}

.cta-section .section-title,
.cta-section .section-content {
    color: white;
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== PRINT STYLES ===== */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .site-header,
    .site-footer,
    .whatsapp-chat,
    .scroll-to-top {
        display: none !important;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .content-section {
        padding: 1rem 0;
    }
    
    .btn {
        display: none !important;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
}
