/* Custom CSS for Grow Your Darija */

/* Color Variables */
:root {
    --primary-color: #d2691e; /* Moroccan orange */
    --secondary-color: #8b4513; /* Moroccan brown */
    --accent-color: #dc143c; /* Moroccan red */
    --text-dark: #2c1810;
    --text-light: #6b5b73;
    --background-light: #faf7f2; /* Warm beige */
    --background-white: #ffffff;
}

/* Typography */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 70px; /* Account for fixed header */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Header Styles */
.header-section {
    background: #faf8f5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: none;
    outline: none;
}

.navbar-logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.navbar {
    padding: 0;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.navbar * {
    border: none !important;
    outline: none !important;
}

.navbar-scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Navigation Styles */
.navbar-nav {
    gap: 0.5rem;
}

/* Navigation Links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(210, 105, 30, 0.1);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Join Now Button */
.join-now-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
    position: relative;
    overflow: hidden;
}

.join-now-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.4);
}

.join-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.join-now-btn:hover::before {
    left: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .navbar-brand {
        display: flex;
        justify-content: flex-start;
        width: auto;
        margin: 0;
    }
    
    .navbar::after {
        content: "Grow Your Darija";
        position: fixed;
        left: 50%;
        top: 25px;
        transform: translateX(-50%);
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-dark);
        z-index: 999;
        transition: opacity 0.3s ease;
    }
    
    .navbar.show::after {
        opacity: 0;
    }
    
    .navbar-toggler {
        position: fixed;
        right: 1rem;
        top: 25px;
        z-index: 1000;
    }
    
    .navbar-logo {
        height: 60px;
    }
    
    .navbar-collapse {
        background: #faf8f5;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        margin-bottom: 1rem;
        justify-content: center;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
        font-family: 'Playfair Display', serif;
        font-weight: 600;
        font-size: 1.1rem;
        text-align: center;
        border-bottom: 1px solid rgba(210, 105, 30, 0.2);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .join-now-btn {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 48px 0;
    }
    
    .hero-section .col-lg-4 {
        order: 1;
    }
    
    .hero-section .col-lg-8 {
        order: 2;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 1rem;
        padding-left: 2%;
        padding-right: 2%;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-section .row {
        --bs-gutter-x: 0;
    }
    
    .hero-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-right: 0;
        padding-left: 5%;
        margin-top: -2rem;
    }
    
    .hero-logo-circle {
        width: 380px;
        height: 380px;
    }
    
    .hero-logo-image {
        width: 360px;
        height: 360px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-logo-circle {
        width: 320px;
        height: 320px;
    }
    
    .hero-logo-image {
        width: 300px;
        height: 300px;
    }
    
    .hero-badges {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Hero Section */
.hero-section {
    background: #E1CDBB;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

/* Hero Logo */
.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-right: 5%;
}

.hero-logo-circle {
    width: 420px;
    height: 420px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    margin: 0 auto;
}

.hero-logo-image {
    width: 400px;
    height: 400px;
    object-fit: contain;
    border-radius: 50%;
}

/* Hero Content */
.hero-content {
    text-align: left;
    padding: 1rem;
    padding-left: 2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.greeting-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 2px dashed var(--primary-color);
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 500px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-cta-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.3);
    text-align: center;
    font-size: 1.1rem;
    white-space: nowrap;
}

.hero-cta-primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.4);
}

.hero-cta-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1rem;
    white-space: nowrap;
}

.hero-cta-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    align-items: center;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hero-badge span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Introduction Section */
.intro-section {
    background: #D4C4B0; /* Darker shade of hero background */
    padding: 4rem 0;
    position: relative;
}

.intro-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem 0;
}

.intro-photo-container {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.intro-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.intro-image:hover {
    transform: translateY(-5px);
}

/* CTA Content Styles */
.intro-cta-content {
    padding: 2rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.intro-cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.intro-story-text {
    margin-bottom: 2rem;
}

.intro-story-text p {
    font-size: 1rem;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.intro-story-text p:last-child {
    margin-bottom: 0;
}

.intro-cta-buttons {
    margin-bottom: 2rem;
}

.intro-cta-btn-primary {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-size: 1.1rem;
}

.intro-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.4);
    color: white;
    background: linear-gradient(135deg, #e67a2a, #9d4e15);
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.intro-feature-item {
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

.intro-feature-item span {
    flex: 1;
    margin-left: 0.125rem;
}

/* Video Styles */
.intro-video {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
    margin-top: -1rem;
}

.intro-video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.intro-video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.intro-video-player:hover {
    transform: translateY(-5px);
}

.intro-content {
    padding: 3rem 1rem 2rem 1rem;
    padding-left: 3rem;
}

.intro-greeting {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.intro-story {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.intro-story p {
    margin-bottom: 1.5rem;
}

.intro-story p:last-child {
    margin-bottom: 0;
}

/* Intro Section Responsive */
@media (max-width: 991.98px) {
    .intro-section {
        padding: 2rem 0;
    }
    
    .intro-video {
        padding: 0 0 2rem 0;
    }
    
    .intro-cta-content {
        text-align: center;
        padding: 1rem;
    }
    
    .intro-cta-title {
        font-size: 2rem;
    }
    
    .intro-cta-subtitle {
        font-size: 1.1rem;
    }
    
    .intro-cta-btn-primary {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .intro-content {
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
    }
    
    .intro-greeting {
        font-size: 2.5rem;
    }
    
    .intro-photo {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .intro-cta-title {
        font-size: 1.8rem;
    }
    
    .intro-cta-subtitle {
        font-size: 1rem;
    }
    
    .intro-cta-btn-primary {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .intro-feature-item {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .intro-feature-item span {
        margin-left: 0.125rem;
    }
    
    .intro-greeting {
        font-size: 2rem;
    }
    
    .intro-story {
        font-size: 1rem;
    }
}

/* Services Section */
.services-section {
    background: #E1CDBB;
    padding: 5rem 0;
    position: relative;
}

.services-header {
    margin-bottom: 4rem;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.services-subtitle {
    font-size: 1.3rem;
    color: #000000;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, #faf8f5, #f5f1ed);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid rgba(210, 105, 30, 0.15);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fefcf9, #f8f4f0);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.service-description {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Services Section Responsive */
@media (max-width: 991.98px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .services-title {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}

/* Pricing Section */
.pricing-section {
    background: #D4C4B0;
    padding: 5rem 0;
    position: relative;
}

.pricing-header {
    margin-bottom: 4rem;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.pricing-subtitle {
    font-size: 1.3rem;
    color: #000000;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Cards Row - Equal Height */
.pricing-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background: linear-gradient(135deg, #faf8f5, #f5f1ed);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid rgba(210, 105, 30, 0.2);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.25);
    border-color: var(--primary-color);
}

.pricing-card-featured {
    box-shadow: 0 20px 45px rgba(139, 69, 19, 0.2);
}

.pricing-card-featured:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.pricing-card-header {
    padding: 2.5rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(210, 105, 30, 0.1);
}

.pricing-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.pricing-price {
    margin-bottom: 1rem;
}

.pricing-price-original {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.pricing-price-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.pricing-badge-featured {
    background: var(--secondary-color);
}

.pricing-card-body {
    padding: 2rem;
    flex-grow: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
    text-align: left;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-card-footer {
    padding: 0 2rem 2.5rem;
    margin-top: auto;
}

.pricing-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
}

.pricing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.4);
    color: white;
    background: linear-gradient(135deg, #e67a2a, #9d4e15);
}

@media (max-width: 576px) {
    .pricing-btn-primary,
    .pricing-btn-flexible {
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

.pricing-btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
}

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

.pricing-btn-flexible {
    background: linear-gradient(135deg, var(--secondary-color), #6b4c3a);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    width: 100%;
}

.pricing-btn-flexible:hover {
    background: linear-gradient(135deg, #9d4e15, #5a3a2a);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

/* Pricing Section Responsive */
@media (max-width: 991.98px) {
    .pricing-section {
        padding: 3rem 0;
    }
    
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-cards-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card-featured {
        transform: none;
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .pricing-card-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .pricing-card-body {
        padding: 1.5rem;
    }
    
    .pricing-card-footer {
        padding: 0 1.5rem 2rem;
    }
    
    .pricing-card-title {
        font-size: 1.5rem;
    }
    
    .pricing-price-current {
        font-size: 2rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: #E1CDBB;
    padding: 5rem 0;
    position: relative;
}

.testimonials-header {
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.testimonials-subtitle {
    font-size: 1.3rem;
    color: #000000; /* match intro story text color */
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif; /* match intro story font */
    font-weight: 500; /* match intro story weight */
}

.testimonial-card {
    background: linear-gradient(135deg, #faf8f5, #f5f1ed);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid rgba(210, 105, 30, 0.15);
    position: relative;
    cursor: pointer;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
    border-color: var(--primary-color);
}

/* Testimonial Icon */
.testimonial-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.testimonial-icon i {
    font-size: 2.5rem;
    color: white;
}

.testimonial-card:hover .testimonial-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.3);
}

/* Testimonial Name */
.testimonial-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-underline-offset: 8px;
}

/* Testimonial Description */
.testimonial-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000; /* match intro story text color */
    font-family: 'Inter', sans-serif; /* match intro story font */
    font-weight: 500; /* match intro story weight */
    margin: 0;
}



/* Testimonials Section Responsive */
@media (max-width: 991.98px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-icon {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-icon i {
        font-size: 2rem;
    }
    
    .testimonial-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-icon {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-icon i {
        font-size: 1.8rem;
    }
    
    .testimonial-name {
        font-size: 1.2rem;
    }
    
    .testimonial-description {
        font-size: 0.95rem;
    }
}

/* Footer Section */
.footer-section {
    background: var(--text-dark);
    padding: 4rem 0 2rem 0;
    color: white;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-sections {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section-item {
    flex: 1;
}

.footer-nav-title,
.footer-social-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.social-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-link:hover i {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.4);
}

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

.footer-credit {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.credit-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.credit-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Footer Contact Form */
.footer-contact {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.form-group-container {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(210, 105, 30, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(210, 105, 30, 0.3);
}

/* Footer Responsive */
@media (max-width: 991.98px) {
    .footer-section {
        padding: 3rem 0 2rem 0;
    }
    
    .footer-sections {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-nav {
        align-items: flex-start;
    }
    
    .footer-social {
        align-items: flex-start;
    }
    
    .footer-contact {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .footer-section {
        text-align: center;
    }
    
    .footer-sections {
        align-items: center;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-social {
        align-items: center;
        margin-top: 1rem;
    }
    
    .footer-copyright {
        margin-bottom: 1rem;
    }
    
    .footer-content {
        margin-bottom: 2rem;
    }
}

/* PayPal Subscription Button Styling */
.paypal-subscription-btn {
    margin-top: 0.5rem;
    width: 100%;
}

.paypal-subscription-btn .paypal-button {
    width: 100% !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
}

/* Ensure PayPal button matches the design */
.paypal-subscription-btn .paypal-button-row {
    width: 100% !important;
}

.paypal-subscription-btn .paypal-button-layout-vertical {
    width: 100% !important;
}

