/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.d-flex body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn-primary {
    background: #ea580c;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #c2410c;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s;
    width: fit-content;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

.btn-footer {
    background: transparent;
    border: 2px solid #22c55e;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 1rem;
}

.btn-footer:hover {
    background: #22c55e;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.logo img {
    height: 3rem;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

.nav-menu a {
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #22c55e;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.call-button {
    background: #22c55e;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.call-button:hover {
    background: #16a34a;
}

.call-button .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.call-label {
    font-size: 0.75rem;
}

.call-number {
    font-size: 0.875rem;
}

.mobile-menu-btn {
    display: block;
    background: none;
    color: #374151;
}

.mobile-menu-btn .icon {
    width: 1.5rem;
    height: 1.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('https://ext.same-assets.com/1908705538/2594695296.jpeg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 42rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.75rem;
    }
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

/* Section Styles */
.section {
    padding: 5rem 0;
    background: white;
}

.section-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.section-description {
    color: #374151;
    margin-bottom: 3rem;
    max-width: 48rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 42rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkmark {
    width: 1.25rem;
    height: 1.25rem;
    color: #22c55e;
}

/* Large Image Section */
.large-image-section {
    position: relative;
    height: 600px;
    background-image: url('https://res.cloudinary.com/dspsj31q8/image/upload/v1762152247/The_Instant_Money_Spell_That_Changed_My_Life_y9h04x.jpg');
    background-size: cover;
    background-position: center;
}

/* Achievements Section */
.achievements-section {
    padding: 4rem 0;
}

.achievements-title {
    border-left: 4px solid #22c55e;
    padding-left: 1rem;
    margin-bottom: 3rem;
}

.achievements-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.achievement-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.achievement-label {
    color: #374151;
}

/* Magic Section */
.magic-section {
    position: relative;
    padding: 5rem 0;
    background-image: url('https://ext.same-assets.com/1908705538/1009559110.jpeg');
    background-size: cover;
    background-position: center;
}

.magic-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.magic-content {
    position: relative;
    z-index: 10;
    color: white;
}

.magic-content h2 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .magic-content h2 {
        font-size: 3rem;
    }
}

.magic-content p {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 48rem;
}

/* Spells Grid */
.spells-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .spells-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .spells-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.spell-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s;
}

.spell-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.spell-icon {
    width: 3rem;
    height: 3rem;
    background: #22c55e;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.spell-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.spell-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.spell-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.spell-link {
    color: #22c55e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.spell-link:hover {
    color: #16a34a;
}

.spell-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Herbal Clinic Section */
.herbal-clinic-section {
    position: relative;
    padding: 5rem 0;
    background-image: url('https://ext.same-assets.com/1908705538/3168388661.jpeg');
    background-size: cover;
    background-position: center;
}

.herbal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.herbal-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.herbal-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #86efac;
}

.herbal-content h2 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .herbal-content h2 {
        font-size: 3rem;
    }
}

.herbal-content p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.herbal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .herbal-buttons {
        flex-direction: row;
    }
}

.testimonial-image {
    width: 100% !important;
}



/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {}

.reason-item {
    display: flex;
    gap: 1rem;
}

.reason-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: #22c55e;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.reason-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.reason-item p {
    color: #6b7280;
}

/* Testimonial Section */
.testimonial-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .testimonial-container {
        flex-direction: row;
    }
}

.testimonial-image {
    width: 100%;
}

@media (min-width: 768px) {
    .testimonial-image {
        width: 33.333%;
    }
}

.testimonial-image img {
    border-radius: 0.5rem;
    width: 100%;
    height: auto;
}

.testimonial-content {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border-left: 4px solid #22c55e;
}

@media (min-width: 768px) {
    .testimonial-content {
        width: 66.667%;
    }
}

.quote-mark {
    font-size: 4rem;
    color: #22c55e;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #22c55e;
    font-weight: 600;
}

/* Payment Section */
.payment-section {
    padding: 3rem 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.payment-title {
    border-left: 4px solid #22c55e;
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.payment-title h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .payment-logos {
        justify-content: flex-start;
    }
}

.payment-logos img {
    height: 3rem;
}

/* Quote Section */
.quote-section {
    position: relative;
    padding: 5rem 0;
    background-image: url('https://ext.same-assets.com/1908705538/174811811.jpeg');
    background-size: cover;
    background-position: center;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.quote-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.quote-mark-large {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .quote-text {
        font-size: 1.875rem;
    }
}

.quote-author {
    font-size: 1.125rem;
}

.quote-location {
    font-size: 0.875rem;
    color: #d1d5db;
}

/* Remedies Grid */
.remedies-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .remedies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.remedy-card {
    position: relative;
    height: 16rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.remedy-1 {
    background-image: url('https://ext.same-assets.com/1908705538/2910941269.jpeg');
}

.remedy-2 {
    background-image: url('https://ext.same-assets.com/1908705538/633946932.jpeg');
}

.remedy-3 {
    background-image: url('https://ext.same-assets.com/1908705538/2693284455.jpeg');
}

.remedy-4 {
    background-image: url('https://ext.same-assets.com/1908705538/443639915.jpeg');
}

.remedy-5 {
    background-image: url('https://ext.same-assets.com/1908705538/22810914.jpeg');
}

.remedy-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s;
}

.remedy-card:hover .remedy-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.remedy-content {
    position: relative;
    z-index: 10;
    padding: 1.5rem;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.remedy-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.remedy-content p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    color: #22c55e;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.25rem;
    color: #22c55e;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.email-card {
    background: #22c55e;
    color: white;
}

.contact-icon-small {
    width: 2rem;
    height: 2rem;
    color: #22c55e;
}

.email-card .contact-icon-small {
    color: white;
}

.email-secondary {
    font-size: 0.875rem;
    color: #d1fae5;
}

.contact-info-card p {
    font-size: 1.25rem;
}

/* Blog Section */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.blog-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.blog-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-tag {
    background: #ea580c;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.blog-content p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Team CTA Section */
.team-cta-section {
    position: relative;
    padding: 5rem 0;
    background-image: url('https://ext.same-assets.com/1908705538/2124347228.webp');
    background-size: cover;
    background-position: center;
}

.team-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(34, 197, 94, 0.9);
}

.team-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.team-cta-content h2 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .team-cta-content h2 {
        font-size: 3rem;
    }
}

.team-cta-content p {
    font-size: 1.125rem;
    color: #d1fae5;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    height: 3rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

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

.social-links a {
    width: 2rem;
    height: 2rem;
    background: #1f2937;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #22c55e;
}

.social-links svg {
    width: 1rem;
    height: 1rem;
}

.footer-col h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-col ul li a:hover {
    color: #22c55e;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a:hover {
    color: #22c55e;
}

/* Icon Size */
.icon {
    width: 1.25rem;
    height: 1.25rem;
/* Mobile First - Small screens (up to 576px) */
@media (max-width: 576px) {
  .hero {
    height: 50vh;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 0.9rem;
  }

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

  .feature-item {
    font-size: 0.9rem;
  }

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

  .spell-card {
    padding: 1rem;
  }

  .spell-card h3 {
    font-size: 1.1rem;
  }

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

  .remedy-card {
    height: 12rem;
  }

  .remedy-content h3 {
    font-size: 1.2rem;
  }

  .remedy-content p {
    font-size: 0.9rem;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .testimonial-container {
    flex-direction: column;
  }

  .testimonial-image {
    width: 100%;
  }

  .testimonial-content {
    width: 100%;
  }

  .payment-logos {
    justify-content: center;
    gap: 1rem;
  }

  .payment-logos img {
    height: 2rem;
  }
}

/* Tablet - Medium screens (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .spells-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .remedies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Desktop - Large screens (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .spells-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .remedies-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Desktop - Extra large screens (993px+) */
@media (min-width: 993px) {
  .container {
    max-width: 1400px;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

/* Ultra-wide screens (1400px+) */
@media (min-width: 1400px) {
  .container {
    max-width: 1600px;
  }

  .hero-content h1 {
    font-size: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-primary {
    border: 2px solid currentColor;
  }

  .spell-card {
    border: 1px solid currentColor;
  }
}

/* Print styles */
@media print {
  .hero {
    display: none;
  }

  .btn-primary {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .section {
    page-break-inside: avoid;
  }
}
}