/* 
 * Al Shafah - Professional Spiritual Healing Website
 * Main Stylesheet
 * Color Scheme: Islamic Green, Gold Accents, Elegant Design
 */

:root {
    --primary: #1a472a;
    --accent: #d4af37;
    --light: #f5f5f0;
    --dark: #1a1a1a;
    --secondary: #8b6914;
    --text: #333;
    --border: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.8rem; margin-bottom: 1rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; font-size: 1.05rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0;
}

.logo-text p {
    font-size: 0.65rem;
    color: var(--secondary);
    margin: 0;
    font-style: italic;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
    position: relative;
    padding-bottom: 0.3rem;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.85) 0%, rgba(26, 71, 42, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    color: white;
    z-index: 100;
    animation: fadeInUp 1s ease;
    position: relative;
}

.hero-content h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--light);
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent);
    color: var(--dark);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    text-decoration: none;
    border: 2px solid var(--accent);
    cursor: pointer;
}

.cta-button:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary);
}

/* Slideshow */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomIn 0.5s ease;
}

.slide.active {
    display: block;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.85) 0%, rgba(26, 71, 42, 0.75) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 20px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    transition: all 0.3s ease;
}

.prev { left: 0; }
.next { right: 0; }

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.6);
}

.slide-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

/* Section Styling */
section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1.5rem;
}

/* Background Sections */
.bg-primary {
    background: var(--primary);
    color: white;
}

.bg-primary h2, .bg-primary h3 {
    color: white;
}

.bg-light {
    background: var(--light);
}

.bg-image {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-overlay {
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.88) 0%, rgba(26, 71, 42, 0.8) 100%);
    padding: 2rem;
    position: relative;
    z-index: 2;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Cards */
.card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.card p {
    font-size: 0.95rem;
    color: #666;
}

.card-quote {
    font-style: italic;
    color: var(--secondary);
    margin-top: 1rem;
    font-size: 0.9rem;
    padding-left: 1rem;
}

/* Testimonial Cards */
.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid var(--border);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.testimonial p {
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

/* Team Member Cards */
.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-member-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-content {
    padding: 2rem;
}

.team-member h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.team-member-title {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-tag {
    background: var(--light);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--primary);
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.floating-btn i {
    transition: transform 0.3s ease;
}

.floating-btn:hover i {
    transform: scale(1.2) rotate(10deg);
}

.floating-call {
    background: #ff6b6b;
}

.floating-call:hover {
    background: #ff5252;
    transform: translateY(-5px);
}

.floating-whatsapp {
    background: #25d366;
}

.floating-whatsapp:hover {
    background: #20ba58;
    transform: translateY(-5px);
}

.floating-email {
    background: #4285f4;
}

.floating-email:hover {
    background: #2979ca;
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-section p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
}

/* Forms */
form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

input, textarea, select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 71, 42, 0.3);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 71, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--accent);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* FAQ Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(var(--accent-rgb, 198, 150, 70), 0.05);
}

.faq-question i:last-child {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    background: rgba(var(--accent-rgb, 198, 150, 70), 0.1);
}

.faq-item.active .faq-question i:last-child {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Security Warning Styles */
.security-warning {
    background: linear-gradient(135deg, rgba(74, 132, 79, 0.05) 0%, rgba(198, 150, 70, 0.05) 100%);
    padding: 3rem 1rem;
}

.security-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.security-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.warning-card .security-icon {
    color: #d32f2f;
}

.safe-card .security-icon {
    color: var(--accent);
}

.safe-icon {
    color: var(--accent) !important;
}

.security-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.security-card p {
    color: #555;
    line-height: 1.7;
}

.threat-list p {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
}

.threat-list {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(211, 47, 47, 0.05);
    border-radius: 6px;
    text-align: left;
}

.safety-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.safety-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.safety-item p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.official-contact-banner {
    background: rgba(198, 150, 70, 0.08);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(198, 150, 70, 0.2);
}

.contact-method {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(198, 150, 70, 0.05);
    transform: translateY(-3px);
}

.contact-method-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.contact-method h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Responsive Design - Tablet and Mobile */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 1.5rem;
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Services Grid Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Toggle */
    .menu-toggle {
        display: block !important;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
    }

    nav ul.active {
        max-height: 500px;
        display: flex;
    }

    nav li {
        border-bottom: 1px solid var(--border);
    }

    nav li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 1rem 0;
        font-size: 0.9rem;
        color: var(--dark);
    }

    nav a::after {
        display: none;
    }

    nav a:hover {
        color: var(--accent);
    }

    header {
        position: relative;
    }

    .header-container {
        padding: 0 1rem;
        flex-wrap: wrap;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    .logo-text p {
        font-size: 0.6rem;
    }

    .logo img {
        height: 45px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }

    section {
        padding: 2.5rem 1rem;
    }

    .floating-actions {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .grid {
        gap: 1.5rem;
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .slideshow-container {
        height: 400px;
    }

    /* Contact Form Responsiveness */
    .contact-method {
        padding: 1.2rem;
    }

    .contact-method-icon {
        font-size: 2rem;
    }

    .security-warning {
        padding: 2rem 0;
    }

    .security-card {
        padding: 1.5rem;
    }

    .threat-list {
        padding: 0.75rem;
    }

    .threat-list p {
        font-size: 0.9rem;
    }

    .official-contact-banner {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 1.2rem 1.2rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo img {
        height: 40px;
    }

    .logo-text h1 {
        font-size: 0.9rem;
    }

    .logo-text p {
        font-size: 0.55rem;
    }

    nav ul {
        padding: 0.75rem;
    }

    nav a {
        padding: 0.8rem 0;
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1rem; }

    section {
        padding: 1.5rem 0.75rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .floating-actions {
        bottom: 15px;
        right: 10px;
        gap: 8px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin: 0.5rem 0;
        width: 100%;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slideshow-container {
        height: 300px;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    form {
        max-width: 100%;
    }

    /* Mobile Contact Page Styles */
    .security-warning {
        padding: 1.5rem 0;
    }

    .security-card {
        padding: 1.2rem;
    }

    .security-icon {
        font-size: 2rem;
    }

    .security-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .security-card p {
        font-size: 0.9rem;
    }

    .threat-list {
        padding: 0.5rem;
        margin-top: 0.8rem;
    }

    .threat-list p {
        font-size: 0.85rem;
        margin: 0.3rem 0;
    }

    .official-contact-banner {
        padding: 1rem;
    }

    .official-contact-banner h3 {
        font-size: 1rem;
    }

    .contact-method {
        padding: 1rem;
        background: white;
    }

    .contact-method-icon {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }

    .contact-method h4 {
        font-size: 0.95rem;
    }

    .contact-method p {
        font-size: 0.85rem;
    }

    .faq-accordion {
        gap: 0.75rem;
    }

    .faq-item {
        border-radius: 6px;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .faq-question span {
        font-size: 0.88rem;
    }

    .faq-answer {
        max-height: 600px;
    }

    .faq-answer p {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .safety-item {
        gap: 0.8rem;
    }

    .safety-badge {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .safety-item p {
        font-size: 0.85rem;
    }
}