/*
* SWEAT MINISTRY - STYLE.CSS
*--------------------------------------------------
* 1.  VARIABLES & RESET
* 2.  GENERAL STYLES
* 3.  HEADER & NAVIGATION
* 4.  HERO SECTION
* 5.  IMPACT STATISTICS
* 6.  MISSION & VISION
* 7.  PROGRAMS
* 8.  GALLERY
* 9.  TIMELINE
* 10. GET INVOLVED
* 11. TESTIMONIALS
* 12. NEWSLETTER
* 13. FOOTER
* 14. HELPERS & ANIMATIONS
*--------------------------------------------------
*/

/* 1. VARIABLES & RESET
-------------------------------------------------- */
:root {
    --primary-color: #9a1b21; /* Dark Red from logo */
    --secondary-color: #f4b400; /* Gold/Orange Accent - warm contrast */
    --dark-color: #2c2c2c;      /* Near Black from logo */
    --light-color: #ffffff;     /* White */
    --gray-color: #f4f4f4;
    --text-color: #333;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --header-height: 80px;
    --border-radius: 5px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
}

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

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

section {
    padding: 6rem 0;
}

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

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--transition-speed);
    cursor: pointer;
    text-align: center;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.btn-secondary:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* 14. HELPERS & ANIMATIONS
-------------------------------------------------- */
.text-center {
    text-align: center;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* For scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 3. HEADER & NAVIGATION
-------------------------------------------------- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
}

#main-header.scrolled {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

#main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#main-header .logo {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    z-index: 1001;
    font-weight: 700;
}

#main-header.scrolled .logo {
    color: var(--primary-color);
}

#main-header .logo img {
    height: 50px;
    margin-right: 0.5rem;
    transition: all var(--transition-speed);
}

#main-header.scrolled .logo span {
    color: var(--dark-color);
}

#main-header .nav-links ul {
    display: flex;
}

#main-header .nav-links a {
    color: var(--dark-color) !important;
    margin: 0 1rem;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-speed);
}

#main-header .nav-links a:hover {
    color: var(--primary-color) !important;
}

#main-header.scrolled .nav-links a {
    color: var(--dark-color) !important;
}

#main-header .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width var(--transition-speed);
}

#main-header .nav-links a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.nav-arrow::after {
    content: ' ▾';
    font-size: 0.8em;
    transition: transform var(--transition-speed);
}

.dropdown:hover .nav-arrow::after {
    transform: rotate(180deg);
    display: inline-block;
}

.dropdown-menu {
    z-index: 1001;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    width: 100%;
    font-weight: 500;
    text-align: left;
}

/* Remove default underline animation from dropdown links */
.dropdown-menu li a::after {
    display: none !important;
    height: 0 !important;
    background: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1002;
    padding: 0.5rem;
}

.hamburger .bar {
    width: 28px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger:hover .bar {
    background-color: var(--primary-color);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* 4. HERO SECTION
-------------------------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--light-color);
}

.hero-buttons .btn {
    margin: 0 0.5rem;
}

/* 5. IMPACT STATISTICS
-------------------------------------------------- */
.impact-stats {
    background-color: var(--gray-color);
}

.impact-stats .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

/* 6. MISSION & VISION
-------------------------------------------------- */
.mission-vision .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-vision-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.mission-vision-text h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* 7. PROGRAMS
-------------------------------------------------- */
.programs-section {
    background-color: var(--gray-color);
}

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

.program-cards-grid .card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.program-cards-grid .card h3 {
    margin: 1.5rem 1.5rem 0.5rem;
    font-size: 1.25rem;
}

.program-cards-grid .card p {
    margin: 0 1.5rem 1.5rem;
}

.btn-tertiary {
    display: block;
    width: fit-content;
    margin: 0 1.5rem 1.5rem;
    font-weight: 600;
}

/* Styles for Program Detail Pages */
.page-header {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: var(--header-height);
}

.page-header h1 {
    color: var(--light-color);
    font-size: 3rem;
}

.program-details .program-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.program-subsection {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-color);
}
.program-subsection:last-of-type {
    border-bottom: none;
}

.program-subsection h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.program-subsection ul {
    list-style: disc;
    padding-left: 2rem;
}
.program-subsection li {
    margin-bottom: 0.5rem;
}

/* 8. GALLERY
-------------------------------------------------- */
.gallery-section {
    padding-bottom: 6rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.gallery-item img:hover {
    transform: scale(1.03);
    box-shadow: var(--box-shadow);
}

/* 9. TIMELINE
-------------------------------------------------- */
.timeline-section {
    background-color: var(--dark-color);
    color: var(--light-color);
}
.timeline-section h2 {
    color: var(--light-color);
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}
.timeline-item {
    padding: 1rem 2.5rem;
    position: relative;
    width: 50%;
}
.timeline-item:nth-child(odd) {
    left: 0;
}
.timeline-item:nth-child(even) {
    left: 50%;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--light-color);
    border: 4px solid var(--primary-color);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(even)::after {
    left: -10px;
}
.timeline-content {
    padding: 1.5rem;
    background-color: #3e3e3e;
    border-radius: var(--border-radius);
}
.timeline-content h3 {
    color: var(--secondary-color);
}

/* 10. GET INVOLVED
-------------------------------------------------- */
.get-involved {
    background-color: var(--gray-color);
}

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

.involvement-card {
    background: var(--light-color);
    padding: 2rem;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.involvement-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* 11. TESTIMONIALS
-------------------------------------------------- */
.testimonials-section {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none; /* Hidden by default, shown by JS */
    text-align: center;
}
.testimonial-slide.active {
    display: block;
}

.testimonial-slide p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-slide .author {
    font-weight: 700;
    color: var(--primary-color);
}

/* 12. NEWSLETTER
-------------------------------------------------- */
.newsletter-section {
    background-color: var(--secondary-color);
    padding: 4rem 0;
}

.newsletter-section h2, .newsletter-section p {
    color: var(--dark-color);
}

.newsletter-form {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.newsletter-form input {
    width: 300px;
    padding: 0.8rem;
    border: none;
    border-radius: var(--border-radius);
}

/* 13. FOOTER
-------------------------------------------------- */
.main-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding-top: 4rem;
}

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

.footer-col .logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-col .logo img {
    height: 40px;
    margin-right: 0.5rem;
}

.footer-col h3 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

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

.footer-col a {
    color: var(--gray-color);
}
.footer-col a:hover {
    color: var(--secondary-color);
}

.social-icons a {
    margin-right: 1rem;
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid #444;
}

/* ADDITIONAL PAGE STYLES
-------------------------------------------------- */

/* Leadership Page */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.leader-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform var(--transition-speed);
}

.leader-card:hover {
    transform: translateY(-5px);
}

.leader-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.structure-section {
    margin-top: 3rem;
}

.structure-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.department-card {
    background: var(--gray-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.department-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Get Involved Page */
.sponsorship-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sponsorship-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.sponsorship-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.sponsorship-card h3 {
    padding: 1.5rem 1.5rem 0;
    color: var(--primary-color);
}

.sponsorship-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
}

.sponsorship-card p,
.sponsorship-card ul {
    padding: 0 1.5rem;
}

.sponsorship-card ul {
    list-style: none;
    padding-left: 2rem;
}

.sponsorship-card ul li::before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: bold;
}

.sponsorship-card .btn-primary {
    margin: 1.5rem;
}

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

.education-card {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.education-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

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

.project-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.project-card h3,
.project-card p,
.project-card ul {
    padding: 0 1.5rem;
}

.project-card h3 {
    padding-top: 1.5rem;
    color: var(--primary-color);
}

.project-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
}

.project-card .btn-secondary {
    margin: 1.5rem;
}

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

.volunteer-card {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-top: 4px solid var(--primary-color);
}

.volunteer-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.volunteer-card ul {
    list-style: none;
}

.volunteer-card ul li::before {
    content: "• ";
    color: var(--secondary-color);
    font-weight: bold;
}

.volunteer-cta {
    text-align: center;
    margin-top: 3rem;
}

.donation-section {
    background: var(--gray-color);
}

.donation-info {
    max-width: 800px;
    margin: 0 auto;
}

.donation-info h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.donation-cta {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 2rem;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

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

.contact-card {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

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

.connect-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
}

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

.connect-card h3 {
    padding: 1.5rem 1rem 0.5rem;
    color: var(--primary-color);
}

.connect-card p {
    padding: 0 1rem;
}

.connect-card .btn-secondary {
    margin: 1.5rem;
}

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

.office-card {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.office-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-section {
    padding: 4rem 0;
    background: var(--gray-color);
}

.map-placeholder {
    background: var(--light-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
}

/* Additional Services Page */
.construction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.construction-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.construction-card h3,
.construction-card p {
    padding: 0 1.5rem;
}

.construction-card h3 {
    padding-top: 1.5rem;
    color: var(--primary-color);
}

.construction-card p:last-child {
    padding-bottom: 1.5rem;
}

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

.vision-card {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.vision-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* About Page Specific */
.vision-statement {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-color);
    padding: 2rem;
    background: var(--gray-color);
    border-left: 4px solid var(--secondary-color);
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

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

.achievement-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-top: 4px solid var(--secondary-color);
}

.achievement-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* MODERN ENHANCEMENTS
-------------------------------------------------- */

/* Enhanced Card Styles */
.info-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    border-left: 4px solid var(--primary-color);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

/* Grid System for Cards */
.card-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

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

.card-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Image Card with Content */
.image-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-card-content {
    padding: 1.5rem;
}

.image-card-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.image-card-content p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Icon Cards */
.icon-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-color);
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
    border-top: 3px solid var(--secondary-color);
}

.icon-card:hover {
    background: var(--light-color);
    box-shadow: var(--box-shadow);
    transform: translateY(-3px);
}

.icon-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
}

.icon-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

/* Feature Box */
.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed);
}

.feature-box:hover {
    box-shadow: var(--box-shadow);
    transform: translateX(5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-center;
    color: var(--light-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.feature-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-content p {
    color: var(--text-color);
    margin: 0;
}

/* Pricing Cards */
.pricing-card {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--gray-color) 100%);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
    border: 2px solid transparent;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(154, 27, 33, 0.2);
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.pricing-period {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.pricing-features {
    text-align: left;
    margin: 1.5rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

/* Team Member Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-card {
    text-align: center;
    background: var(--light-color);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 2.5rem;
    font-weight: bold;
    border: 4px solid var(--light-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.team-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Section with Background Image */
.hero-section-mini {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 4rem 0;
    color: var(--light-color);
}

.hero-section-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(154, 27, 33, 0.85), rgba(44, 44, 44, 0.85));
    z-index: 1;
}

.hero-section-mini .container {
    position: relative;
    z-index: 2;
}

.hero-section-mini h2 {
    color: var(--light-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-section-mini p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), #7a1519);
    color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    box-shadow: 0 8px 20px rgba(154, 27, 33, 0.3);
}

.highlight-box h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.highlight-box p {
    color: var(--light-color);
    margin: 0;
}

/* List with Icons */
.icon-list {
    list-style: none;
    padding: 0;
}

.icon-list li {
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

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

.icon-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 1.8rem;
    height: 1.8rem;
    background: var(--secondary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Number Badge */
.number-badge {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Enhanced Button Styles */
.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Section Divider */
.section-divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

/* Stats Counter Enhanced */
.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* Testimonial Card Enhancement */
.testimonial-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    margin: 1rem 0;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}
