/**
 * WREAU Custom Widgets Styles
 * Version: 1.0.0
 */

/* ========================================
   Header Widget Styles
   ======================================== */

.wreau-header-wrapper {
    width: 100%;
    position: relative;
    z-index: 999;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.wreau-header-wrapper.wreau-header-sticky {
    position: sticky;
    top: 0;
}

.wreau-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo Styles */
.wreau-header-logo {
    flex-shrink: 0;
}

.wreau-header-logo a {
    display: block;
    line-height: 0;
}

.wreau-header-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation Menu Styles */
.wreau-header-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.wreau-header-menu ul,
.wreau-menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.wreau-header-menu ul li {
    margin: 0;
    padding: 0;
}

.wreau-header-menu ul li a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.wreau-header-menu ul li a:hover {
    color: #4CAF50;
}

.wreau-header-menu ul li.current-menu-item a,
.wreau-header-menu ul li.current_page_item a {
    color: #4CAF50;
    font-weight: 600;
}

/* Dropdown Menu Styles */
.wreau-header-menu ul li {
    position: relative;
}

.wreau-header-menu ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
}

.wreau-header-menu ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wreau-header-menu ul ul li {
    width: 100%;
}

.wreau-header-menu ul ul li a {
    padding: 10px 20px;
    display: block;
}

.wreau-header-menu ul ul li a:hover {
    background-color: #f5f5f5;
}

/* Buttons Container */
.wreau-header-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Button Base Styles */
.wreau-header-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
}

/* Outline Button Style */
.wreau-header-btn.wreau-btn-outline {
    background-color: transparent;
    border-color: currentColor;
}

/* Filled Button Style */
.wreau-header-btn.wreau-btn-filled {
    border-color: currentColor;
}

/* Button Hover Effects */
.wreau-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu Toggle (for future mobile implementation) */
.wreau-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.wreau-mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 1024px) {
    .wreau-header-container {
        gap: 20px;
    }
    
    .wreau-header-menu ul {
        gap: 20px;
    }
    
    .wreau-header-menu ul li a {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .wreau-header-wrapper {
        padding: 10px 0;
    }
    
    .wreau-header-container {
        flex-wrap: wrap;
        padding: 10px 15px;
    }
    
    .wreau-header-menu {
        order: 3;
        flex-basis: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .wreau-header-menu ul {
        gap: 15px;
        padding: 10px 0;
    }
    
    .wreau-header-menu ul li a {
        font-size: 14px;
    }
    
    .wreau-header-buttons {
        flex-shrink: 0;
    }
    
    .wreau-header-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .wreau-header-logo img {
        max-height: 40px;
        width: auto;
    }
    
    .wreau-header-buttons {
        gap: 5px;
    }
    
    .wreau-header-btn {
        padding: 7px 15px;
        font-size: 12px;
    }
    
    .wreau-header-menu ul {
        gap: 10px;
    }
    
    .wreau-header-menu ul li a {
        font-size: 13px;
    }
}

/* ========================================
   Utility Classes
   ======================================== */

.wreau-header-wrapper.header-transparent {
    background-color: transparent;
    box-shadow: none;
}

.wreau-header-wrapper.header-shadow-none {
    box-shadow: none !important;
}

/* Accessibility */
.wreau-header-menu a:focus,
.wreau-header-btn:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .wreau-header-wrapper {
        box-shadow: none;
    }
    
    .wreau-header-buttons {
        display: none;
    }
}








/* Key Activities Widget */

.wreau-key-activities-wrapper {
    text-align: center;
    padding: 80px 20px;
    background: #fff; /* or your section bg */
}

.wreau-activities-heading {
    max-width: 900px;
    margin: 0 auto 60px;
}

.wreau-activities-subtitle {
    color: #2D6F5E;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.wreau-activities-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 24px;
}

.wreau-activities-description {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
}

.wreau-activities-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.wreau-activity-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.wreau-activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wreau-card-icon {
    font-size: 48px;
    color: #2D6F5E;
    margin-bottom: 24px;
}

.wreau-card-icon svg,
.wreau-card-icon i {
    width: 1em;
    height: 1em;
}

.wreau-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.wreau-card-description {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .wreau-activities-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .wreau-activities-cards {
        grid-template-columns: 1fr;
    }
    .wreau-activities-title {
        font-size: 32px;
    }
}



/* ========================================
   WREAU Hero Widget - Full Styling
   ======================================== */

/* Wrapper & Background */
.wreau-hero-wrapper {
    position: relative;
    background-color: #E8F3F0;          /* light green from your design */
    padding: 80px 20px;
    overflow: hidden;
    min-height: 600px;
}

.wreau-hero-slideshow,
.wreau-hero-slideshow-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.wreau-hero-slideshow-item {
    opacity: 0;
    transition: opacity 1.5s ease;
}

.wreau-hero-slideshow-item.active {
    opacity: 1;
}

.wreau-hero-slideshow-overlay {
    position: absolute;
    inset: 0;
    background-color: #000;             /* you can change to your overlay color */
    opacity: 0.3;
    z-index: 1;
}

/* Container */
.wreau-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

/* Content Area */
.wreau-hero-content {
    flex: 1;
    min-width: 0;
}

/* Tagline */
.wreau-hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #2D6F5E;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.wreau-hero-tagline i,
.wreau-hero-tagline svg {
    color: #4CAF50;
    font-size: 18px;
}

/* Heading */
.wreau-hero-heading {
    color: #1a1a1a;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px;
}

/* Description */
.wreau-hero-description {
    color: #4a5568;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Buttons */
.wreau-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

.wreau-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;                /* rounded like your design */
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wreau-hero-btn-primary {
    background-color: #2D6F5E;
    color: #ffffff;
    border: none;
}

.wreau-hero-btn-primary:hover {
    background-color: #235749;
}

.wreau-hero-btn-secondary {
    background-color: #FFC107;
    color: #1a1a1a;
    border: none;
}

.wreau-hero-btn-secondary:hover {
    background-color: #FFD54F;
}

.wreau-hero-btn-outline {
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
}

.wreau-hero-btn-outline:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Info Cards */
.wreau-hero-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.wreau-hero-card {
    flex: 1;
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.wreau-hero-card-icon {
    font-size: 40px;
    color: #4CAF50;
    margin-bottom: 12px;
}

.wreau-hero-card-label {
    color: #2D6F5E;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.wreau-hero-card-title {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
}

/* Sidebar */
.wreau-hero-sidebar {
    width: 380px;
    background-color: #F5F5DC;          /* beige/cream from design */
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.1);
}

.wreau-hero-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.wreau-hero-sidebar-title {
    color: #2D6F5E;
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.wreau-hero-sidebar-dots {
    display: flex;
    gap: 8px;
}

.wreau-hero-sidebar-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.wreau-hero-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.wreau-hero-sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.wreau-hero-sidebar-icon {
    color: #4CAF50;
    font-size: 18px;
    font-weight: bold;
}

.wreau-hero-sidebar-footer-title {
    color: #2D6F5E;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.wreau-hero-sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wreau-hero-tag {
    background: rgba(45, 111, 94, 0.1);
    color: #2D6F5E;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .wreau-hero-container {
        flex-direction: column;
    }
    .wreau-hero-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .wreau-hero-heading {
        font-size: 36px;
    }
    .wreau-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}




/* About WREAU Widget */

.wreau-about-wrapper {
    padding: 100px 20px;
    background: #ffffff;
}

.wreau-about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
}

.wreau-about-left {
    padding-right: 40px;
}

.wreau-about-subtitle {
    color: #2D6F5E;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.wreau-about-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0 0 32px;
}

.wreau-about-description {
    font-size: 18px;
    line-height: 1.65;
    color: #4a5568;
    margin-bottom: 48px;
}

.wreau-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    margin-bottom: 48px;
}

.wreau-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: #1a1a1a;
}

.check-icon {
    color: #2D6F5E;
    font-size: 20px;
    font-weight: bold;
}

.wreau-about-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.wreau-btn-primary,
.wreau-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wreau-btn-primary {
    background: #2D6F5E;
    color: white;
}

.wreau-btn-primary:hover {
    background: #235749;
    transform: translateY(-2px);
}

.wreau-btn-outline {
    background: transparent;
    border: 2px solid #2D6F5E;
    color: #2D6F5E;
}

.wreau-btn-outline:hover {
    background: #2D6F5E;
    color: white;
    transform: translateY(-2px);
}

/* Right Card */
/* Improved Right Card - Membership & Goals */

/* Tighter & More Condensed Right Card - Membership & Goals */

.wreau-membership-card {
    background: #fdfcf7;                    /* soft warm beige */
    border-radius: 16px;
    padding: 24px 22px;                     /* reduced padding */
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(45, 111, 94, 0.06);
    font-size: 15px;                        /* slightly smaller base font */
}

.membership-title {
    font-size: 20px;                        /* smaller title */
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.membership-intro {
    font-size: 14px;                        /* condensed intro */
    line-height: 1.5;
    color: #4a5568;
    margin: 0 0 20px;                       /* reduced margin */
}

/* Membership Types - more compact */
.membership-types {
    margin-bottom: 24px;                    /* reduced */
}

.membership-type {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 20px;                     /* tighter padding */
    margin-bottom: 12px;                    /* closer spacing */
    transition: all 0.25s ease;
}

.membership-type:hover {
    border-color: #2D6F5E;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(45, 111, 94, 0.07);
}

.type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;                     /* tighter */
}

.type-header strong {
    font-size: 16px;
    font-weight: 600;
    color: #2D6F5E;
}

.open-tag {
    background: #e6f4ea;
    color: #2D6F5E;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 16px;
    line-height: 1;
}

.membership-type p {
    font-size: 13.5px;
    color: #4a5568;
    margin: 0;
    line-height: 1.45;
}

/* Goals - Improved with renewable energy icon */
.goals-section {
    margin-top: 4px;                        /* very tight */
}

.goals-title {
    font-size: 18px;
    font-weight: 700;
    color: #2D6F5E;
    margin: 0 0 12px;
}

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

.goals-list li {
    font-size: 14.5px;
    color: #4a5568;
    margin-bottom: 8px;                     /* very compact */
    padding-left: 28px;                     /* space for icon */
    position: relative;
    line-height: 1.5;
}

.goals-list li::before {
    content: "🌿";                         /* leaf / renewable energy icon */
    /* You can also try: ☀️  ♻️  🌱  ⚡  */
    position: absolute;
    left: 0;
    font-size: 18px;
    color: #4CAF50;                         /* vibrant green */
    line-height: 1;
    top: 1px;
}

/* Keep the card narrow */
.wreau-about-right {
    max-width: 400px;                       /* even narrower */
    margin-left: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .wreau-about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .wreau-about-right {
        max-width: 100%;
    }
    
    .wreau-membership-card {
        padding: 22px 20px;
    }
}

@media (max-width: 767px) {
    .membership-type {
        padding: 14px 18px;
    }
    
    .membership-title,
    .goals-title {
        font-size: 18px;
    }
    
    .goals-list li {
        font-size: 14px;
    }
}



/* Members Widget */

.wreau-members-wrapper {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

.wreau-members-heading {
    max-width: 900px;
    margin: 0 auto 70px;
}

.wreau-members-subtitle {
    color: #2D6F5E;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.wreau-members-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0 0 24px;
}

.wreau-members-description {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    max-width: 760px;
    margin: 0 auto;
}

.wreau-members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.wreau-member-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 40px 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 420px;
}

.wreau-member-card:hover {
    transform: translateY(-10px);
    border-color: #2D6F5E;
    box-shadow: 0 20px 40px rgba(45, 111, 94, 0.1);
}

.member-icon {
    font-size: 48px;
    color: #2D6F5E;
    margin-bottom: 24px;
}

.member-icon svg,
.member-icon i {
    width: 1em;
    height: 1em;
}

.member-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
}

.member-subtitle {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 28px;
}

.member-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex-grow: 1;
    text-align: left;
    width: 100%;
}

.member-benefits li {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.member-benefits li::before {
    content: "•";
    color: #2D6F5E;
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
}

.member-button {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #2D6F5E;
    color: #2D6F5E;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-button:hover {
    background: #2D6F5E;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .wreau-members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .wreau-members-grid {
        grid-template-columns: 1fr;
    }
    
    .wreau-members-title {
        font-size: 36px;
    }
    
    .wreau-member-card {
        padding: 36px 28px;
        min-height: auto;
    }
}





/* WREAU Footer Widget */

.wreau-footer {
    background: #f8fafc;
    padding: 80px 20px 40px;
    color: #4a5568;
    font-size: 15px;
    border-top: 1px solid #e2e8f0;
}

.wreau-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
}

.wreau-footer-left,
.wreau-footer-right {
    flex: 1;
    min-width: 280px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 24px;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 380px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #2D6F5E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #235749;
    transform: translateY(-3px);
}

.footer-contact {
    line-height: 1.8;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-item .icon {
    font-size: 20px;
    color: #2D6F5E;
    min-width: 24px;
}

.contact-item a {
    color: #2D6F5E;
    text-decoration: none;
}

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

.wreau-footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    color: #718096;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .wreau-footer-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .wreau-footer-left,
    .wreau-footer-right {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}




/* ========================================
   Contact Section Widget Styles
   ======================================== */

.wreau-contact-wrapper {
    width: 100%;
    background-color: #F9FAFB;
    padding: 80px 20px;
}

.wreau-contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wreau-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column */
.wreau-contact-left {
    max-width: 500px;
}

.wreau-contact-heading {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #1a1a1a;
    font-family: 'Playfair Display', Georgia, serif;
}

.wreau-contact-description {
    font-size: 16px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0 0 40px 0;
}

/* Contact Info Cards */
.wreau-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.wreau-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.wreau-contact-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.wreau-contact-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F3F4F6;
    border-radius: 8px;
    font-size: 20px;
}

.wreau-contact-card-phone .wreau-contact-card-icon {
    color: #4CAF50;
    background-color: #E8F5E9;
}

.wreau-contact-card-email .wreau-contact-card-icon {
    color: #8B5CF6;
    background-color: #F3E8FF;
}

.wreau-contact-card-address .wreau-contact-card-icon {
    color: #F59E0B;
    background-color: #FEF3C7;
}

.wreau-contact-card-icon i,
.wreau-contact-card-icon svg {
    width: 20px;
    height: 20px;
}

.wreau-contact-card-content {
    flex: 1;
}

.wreau-contact-card-label {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.wreau-contact-card-text {
    font-size: 15px;
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wreau-contact-card-text:hover {
    color: #2D6F5E;
}

/* Social Links */
.wreau-contact-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.wreau-contact-social-link {
    padding: 10px 24px;
    border: 1.5px solid #E5E7EB;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wreau-contact-social-link:hover {
    border-color: #2D6F5E;
    color: #2D6F5E;
    transform: translateY(-2px);
}

/* Right Column: Form */
.wreau-contact-right {
    position: relative;
}

.wreau-contact-form-wrapper {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
}

.wreau-contact-form-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6B7280;
    margin-bottom: 12px;
}

.wreau-contact-form-heading {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.wreau-contact-form-description {
    font-size: 14px;
    line-height: 1.5;
    color: #6B7280;
    margin: 0 0 32px 0;
}

.wreau-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wreau-contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wreau-contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.wreau-contact-input,
.wreau-contact-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    font-size: 15px;
    color: #1a1a1a;
    background-color: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.wreau-contact-input:focus,
.wreau-contact-textarea:focus {
    outline: none;
    border-color: #2D6F5E;
    box-shadow: 0 0 0 3px rgba(45, 111, 94, 0.1);
}

.wreau-contact-input::placeholder,
.wreau-contact-textarea::placeholder {
    color: #9CA3AF;
}

.wreau-contact-textarea {
    resize: vertical;
    min-height: 120px;
}

.wreau-contact-submit {
    width: 100%;
    padding: 14px 24px;
    background-color: #2D6F5E;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wreau-contact-submit:hover {
    background-color: #235749;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 111, 94, 0.3);
}

.wreau-contact-submit:active {
    transform: translateY(0);
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 1024px) {
    .wreau-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wreau-contact-left {
        max-width: 100%;
    }

    .wreau-contact-heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .wreau-contact-wrapper {
        padding: 60px 20px;
    }

    .wreau-contact-heading {
        font-size: 32px;
    }

    .wreau-contact-form-wrapper {
        padding: 32px 24px;
    }

    .wreau-contact-cards {
        gap: 12px;
    }

    .wreau-contact-card {
        padding: 16px;
    }

    .wreau-contact-social {
        justify-content: flex-start;
    }

    .wreau-contact-social-link {
        flex: 1;
        text-align: center;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .wreau-contact-heading {
        font-size: 28px;
    }

    .wreau-contact-form-heading {
        font-size: 24px;
    }

    .wreau-contact-form-wrapper {
        padding: 24px 20px;
    }

    .wreau-contact-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .wreau-contact-card-icon {
        align-self: flex-start;
    }
}

/* Success/Error Messages */
.wreau-contact-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.wreau-contact-message.success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #6EE7B7;
}

.wreau-contact-message.error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

/* Loading State */
.wreau-contact-submit.loading {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.wreau-contact-submit.loading::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: wreau-spin 0.6s linear infinite;
}

@keyframes wreau-spin {
    to {
        transform: rotate(360deg);
    }
}





/* ========================================
   Membership Widget Styles
   ======================================== */

.wreau-membership-wrapper {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 20px;
}

.wreau-membership-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.wreau-membership-header {
    text-align: center;
    margin-bottom: 60px;
}

.wreau-membership-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #2D6F5E;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 16px;
}

.wreau-membership-heading {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    font-family: 'Playfair Display', Georgia, serif;
}

.wreau-membership-description {
    font-size: 18px;
    line-height: 1.6;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
}

/* Statistics Section */
.wreau-membership-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    padding: 40px;
    background-color: #F9FAFB;
    border-radius: 16px;
}

.wreau-membership-stat {
    text-align: center;
}

.wreau-membership-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2D6F5E;
    margin-bottom: 8px;
}

.wreau-membership-stat-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

/* Section Titles */
.wreau-membership-section-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
    margin: 0 0 40px 0;
}

/* Benefits Section */
.wreau-membership-benefits-section {
    margin-bottom: 80px;
}

.wreau-membership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.wreau-membership-benefit {
    display: flex;
    gap: 16px;
    padding: 24px;
    background-color: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.wreau-membership-benefit:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.wreau-membership-benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E8F3F0;
    border-radius: 8px;
    color: #2D6F5E;
    font-size: 24px;
}

.wreau-membership-benefit-icon i,
.wreau-membership-benefit-icon svg {
    width: 24px;
    height: 24px;
}

.wreau-membership-benefit-content {
    flex: 1;
}

.wreau-membership-benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.wreau-membership-benefit-description {
    font-size: 15px;
    line-height: 1.5;
    color: #6B7280;
    margin: 0;
}

/* Membership Tiers Section */
.wreau-membership-tiers-section {
    margin-bottom: 80px;
}

.wreau-membership-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.wreau-membership-tier {
    position: relative;
    background-color: #ffffff;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.wreau-membership-tier:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.wreau-membership-tier-featured {
    border-color: #2D6F5E;
    box-shadow: 0 8px 24px rgba(45, 111, 94, 0.15);
}

.wreau-membership-tier-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background-color: #FFC107;
    color: #1a1a1a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.wreau-membership-tier-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 24px;
}

.wreau-membership-tier-name {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.wreau-membership-tier-price {
    font-size: 36px;
    font-weight: 700;
    color: #2D6F5E;
    margin-bottom: 12px;
}

.wreau-membership-tier-description {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

.wreau-membership-tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wreau-membership-tier-features li {
    padding: 12px 0;
    font-size: 15px;
    color: #1a1a1a;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.wreau-membership-tier-features li::before {
    content: "✓";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: #E8F3F0;
    color: #2D6F5E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Testimonials Section */
.wreau-membership-testimonials-section {
    margin-bottom: 80px;
}

.wreau-membership-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.wreau-membership-testimonial {
    background-color: #F9FAFB;
    border-radius: 12px;
    padding: 32px;
}

.wreau-membership-testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 24px;
}

.wreau-membership-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wreau-membership-testimonial-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.wreau-membership-testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.wreau-membership-testimonial-title {
    font-size: 14px;
    color: #6B7280;
}

/* Form Section */
.wreau-membership-form-section {
    max-width: 800px;
    margin: 0 auto;
    background-color: #F9FAFB;
    border-radius: 16px;
    padding: 48px;
}

.wreau-membership-form-description {
    text-align: center;
    font-size: 16px;
    color: #6B7280;
    margin: 0 0 40px 0;
}

.wreau-membership-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wreau-membership-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wreau-membership-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wreau-membership-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.wreau-membership-form-group input[type="text"],
.wreau-membership-form-group input[type="email"],
.wreau-membership-form-group input[type="tel"],
.wreau-membership-form-group select,
.wreau-membership-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    font-size: 15px;
    color: #1a1a1a;
    background-color: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.wreau-membership-form-group input:focus,
.wreau-membership-form-group select:focus,
.wreau-membership-form-group textarea:focus {
    outline: none;
    border-color: #2D6F5E;
    box-shadow: 0 0 0 3px rgba(45, 111, 94, 0.1);
}

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

.wreau-membership-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    padding: 16px;
    background-color: #ffffff;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
}

.wreau-membership-checkboxes label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    cursor: pointer;
}

.wreau-membership-checkboxes input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.wreau-membership-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #2D6F5E;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.wreau-membership-submit:hover {
    background-color: #235749;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 111, 94, 0.3);
}

.wreau-membership-submit:active {
    transform: translateY(0);
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 1024px) {
    .wreau-membership-heading {
        font-size: 40px;
    }

    .wreau-membership-benefits {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .wreau-membership-tiers {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .wreau-membership-testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wreau-membership-wrapper {
        padding: 60px 20px;
    }

    .wreau-membership-heading {
        font-size: 32px;
    }

    .wreau-membership-description {
        font-size: 16px;
    }

    .wreau-membership-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
    }

    .wreau-membership-stat-number {
        font-size: 36px;
    }

    .wreau-membership-benefits {
        grid-template-columns: 1fr;
    }

    .wreau-membership-form-section {
        padding: 32px 24px;
    }

    .wreau-membership-form-row {
        grid-template-columns: 1fr;
    }

    .wreau-membership-checkboxes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .wreau-membership-heading {
        font-size: 28px;
    }

    .wreau-membership-section-title {
        font-size: 24px;
    }

    .wreau-membership-stats {
        grid-template-columns: 1fr;
    }

    .wreau-membership-benefit {
        flex-direction: column;
    }

    .wreau-membership-tier {
        padding: 24px;
    }

    .wreau-membership-form-section {
        padding: 24px 16px;
    }
}

/* Success/Error Messages */
.wreau-membership-message {
    padding: 16px;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 24px;
    text-align: center;
}

.wreau-membership-message.success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #6EE7B7;
}

.wreau-membership-message.error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

/* Loading State */
.wreau-membership-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.wreau-membership-submit.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: wreau-membership-spin 0.6s linear infinite;
}

@keyframes wreau-membership-spin {
    to {
        transform: rotate(360deg);
    }
}



/* ========================================
   Membership Widget Styles
   ======================================== */

.wreau-membership-wrapper {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 20px;
}

.wreau-membership-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.wreau-membership-header {
    text-align: center;
    margin-bottom: 60px;
}

.wreau-membership-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #2D6F5E;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 16px;
}

.wreau-membership-heading {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    font-family: 'Playfair Display', Georgia, serif;
}

.wreau-membership-description {
    font-size: 18px;
    line-height: 1.6;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
}

/* Statistics Section */
.wreau-membership-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    padding: 40px;
    background-color: #F9FAFB;
    border-radius: 16px;
}

.wreau-membership-stat {
    text-align: center;
}

.wreau-membership-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2D6F5E;
    margin-bottom: 8px;
}

.wreau-membership-stat-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

/* Section Titles */
.wreau-membership-section-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
    margin: 0 0 40px 0;
}

/* Benefits Section */
.wreau-membership-benefits-section {
    margin-bottom: 80px;
}

.wreau-membership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.wreau-membership-benefit {
    display: flex;
    gap: 16px;
    padding: 24px;
    background-color: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.wreau-membership-benefit:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.wreau-membership-benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E8F3F0;
    border-radius: 8px;
    color: #2D6F5E;
    font-size: 24px;
}

.wreau-membership-benefit-icon i,
.wreau-membership-benefit-icon svg {
    width: 24px;
    height: 24px;
}

.wreau-membership-benefit-content {
    flex: 1;
}

.wreau-membership-benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.wreau-membership-benefit-description {
    font-size: 15px;
    line-height: 1.5;
    color: #6B7280;
    margin: 0;
}

/* Membership Tiers Section */
.wreau-membership-tiers-section {
    margin-bottom: 80px;
}

.wreau-membership-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.wreau-membership-tier {
    position: relative;
    background-color: #ffffff;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.wreau-membership-tier:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.wreau-membership-tier-featured {
    border-color: #2D6F5E;
    box-shadow: 0 8px 24px rgba(45, 111, 94, 0.15);
}

.wreau-membership-tier-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background-color: #FFC107;
    color: #1a1a1a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.wreau-membership-tier-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 24px;
}

.wreau-membership-tier-name {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.wreau-membership-tier-price {
    font-size: 36px;
    font-weight: 700;
    color: #2D6F5E;
    margin-bottom: 12px;
}

.wreau-membership-tier-description {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

.wreau-membership-tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wreau-membership-tier-features li {
    padding: 12px 0;
    font-size: 15px;
    color: #1a1a1a;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.wreau-membership-tier-features li::before {
    content: "✓";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: #E8F3F0;
    color: #2D6F5E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Testimonials Section */
.wreau-membership-testimonials-section {
    margin-bottom: 80px;
}

.wreau-membership-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.wreau-membership-testimonial {
    background-color: #F9FAFB;
    border-radius: 12px;
    padding: 32px;
}

.wreau-membership-testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 24px;
}

.wreau-membership-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wreau-membership-testimonial-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.wreau-membership-testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.wreau-membership-testimonial-title {
    font-size: 14px;
    color: #6B7280;
}

/* Form Section */
.wreau-membership-form-section {
    max-width: 800px;
    margin: 0 auto;
    background-color: #F9FAFB;
    border-radius: 16px;
    padding: 48px;
}

.wreau-membership-form-description {
    text-align: center;
    font-size: 16px;
    color: #6B7280;
    margin: 0 0 40px 0;
}

.wreau-membership-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wreau-membership-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wreau-membership-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wreau-membership-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.wreau-membership-form-group input[type="text"],
.wreau-membership-form-group input[type="email"],
.wreau-membership-form-group input[type="tel"],
.wreau-membership-form-group select,
.wreau-membership-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    font-size: 15px;
    color: #1a1a1a;
    background-color: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.wreau-membership-form-group input:focus,
.wreau-membership-form-group select:focus,
.wreau-membership-form-group textarea:focus {
    outline: none;
    border-color: #2D6F5E;
    box-shadow: 0 0 0 3px rgba(45, 111, 94, 0.1);
}

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

.wreau-membership-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    padding: 16px;
    background-color: #ffffff;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
}

.wreau-membership-checkboxes label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    cursor: pointer;
}

.wreau-membership-checkboxes input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.wreau-membership-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #2D6F5E;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.wreau-membership-submit:hover {
    background-color: #235749;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 111, 94, 0.3);
}

.wreau-membership-submit:active {
    transform: translateY(0);
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 1024px) {
    .wreau-membership-heading {
        font-size: 40px;
    }

    .wreau-membership-benefits {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .wreau-membership-tiers {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .wreau-membership-testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wreau-membership-wrapper {
        padding: 60px 20px;
    }

    .wreau-membership-heading {
        font-size: 32px;
    }

    .wreau-membership-description {
        font-size: 16px;
    }

    .wreau-membership-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
    }

    .wreau-membership-stat-number {
        font-size: 36px;
    }

    .wreau-membership-benefits {
        grid-template-columns: 1fr;
    }

    .wreau-membership-form-section {
        padding: 32px 24px;
    }

    .wreau-membership-form-row {
        grid-template-columns: 1fr;
    }

    .wreau-membership-checkboxes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .wreau-membership-heading {
        font-size: 28px;
    }

    .wreau-membership-section-title {
        font-size: 24px;
    }

    .wreau-membership-stats {
        grid-template-columns: 1fr;
    }

    .wreau-membership-benefit {
        flex-direction: column;
    }

    .wreau-membership-tier {
        padding: 24px;
    }

    .wreau-membership-form-section {
        padding: 24px 16px;
    }
}

/* Success/Error Messages */
.wreau-membership-message {
    padding: 16px;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 24px;
    text-align: center;
}

.wreau-membership-message.success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #6EE7B7;
}

.wreau-membership-message.error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

/* Loading State */
.wreau-membership-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.wreau-membership-submit.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: wreau-membership-spin 0.6s linear infinite;
}

@keyframes wreau-membership-spin {
    to {
        transform: rotate(360deg);
    }
}