/*! glostad-ab62b2 build 2026-08-18 • do not edit; regenerated on deploy */
/* §ab62-0 */
/* Plugin dependency error styles */
.crm-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    font-weight: 500;
}

.pricing-admin-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1rem auto 0;
    max-width: 600px;
    text-align: left;
}

.pricing-admin-notice p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-admin-notice a {
    color: #007cba;
    text-decoration: none;
    font-weight: 600;
}

.pricing-admin-notice a:hover {
    text-decoration: underline;
}

.pricing-admin-notice .button {
    margin-left: 10px;
    vertical-align: middle;
}

/* Additional custom styles can be added here */
.page-template-dashboard iframe{
    margin-top: 28px !important;
}

/* §ab62-1 */
.hero-section {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #007cba;
    color: #ffffff;
    border-color: #007cba;
}

.btn-primary:hover {
    background: #005a87;
    border-color: #005a87;
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #333333;
}

.btn-outline {
    background: transparent;
    color: #007cba;
    border-color: #007cba;
}

.btn-outline:hover {
    background: #007cba;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
    font-size: 3.5rem;
}
    
    .hero-subtitle {
    font-size: 1.3rem;
}
}

@media (max-width: 768px) {
    .hero-section {
    min-height: 70vh;
}
    
    .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
    
    .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
    
    .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
    
    .btn {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
    font-size: 1rem;
}
}

@media (max-width: 480px) {
    .hero-section {
    min-height: 60vh;
}
    
    .hero-title {
    font-size: 2rem;
}
    
    .hero-subtitle {
    font-size: 1rem;
}
    
    .hero-content {
    padding: 0 1rem;
}
}

/* §ab62-2 */
.carousel-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333333;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.products-carousel {
    position: relative;
    padding: 0 2rem;
}

.product-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-title a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #007cba;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #007cba;
    margin-bottom: 1rem;
}

.product-actions {
    margin-top: auto;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #007cba;
    background: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #007cba;
    color: #ffffff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #cccccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #007cba;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-carousel {
    padding: 0 1rem;
}
}

@media (max-width: 768px) {
    .carousel-section {
    padding: 3rem 0;
}
    
    .section-title {
    font-size: 2rem;
}
    
    .section-subtitle {
    font-size: 1rem;
}
    
    .products-carousel {
    padding: 0;
}
    
    .swiper-button-next,
    .swiper-button-prev {
    display: none;
}
    
    .product-card {
    margin: 0 0.5rem;
}
    
    .product-info {
    padding: 1rem;
}
    
    .product-title {
    font-size: 1rem;
}
    
    .product-price {
    font-size: 1.1rem;
}
}

@media (max-width: 480px) {
    .carousel-section {
    padding: 2rem 0;
}
    
    .section-title {
    font-size: 1.75rem;
}
    
    .product-image img {
    height: 200px;
}
    
    .product-info {
    padding: 0.75rem;
}
}

/* §ab62-3 */
/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

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

/* Admin Notice */
.pricing-admin-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1rem auto 0;
    max-width: 600px;
    text-align: left;
}

.pricing-admin-notice p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-admin-notice a {
    color: #007cba;
    text-decoration: none;
    font-weight: 600;
}

.pricing-admin-notice a:hover {
    text-decoration: underline;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Pricing Card */
.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

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

.pricing-card.popular {
    border-color: #007cba;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #007cba, #0056b3);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #007cba;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: #6c757d;
    margin-left: 0.5rem;
}

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

.subscription-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #28a745;
}

.subscription-period {
    font-size: 0.9rem;
    color: #6c757d;
    margin-left: 0.5rem;
}

.trial-info {
    margin-top: 0.5rem;
}

.trial-days {
    background: #e8f5e8;
    color: #28a745;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Pricing Content */
.pricing-content {
    flex: 1;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0;
}

.feature-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: #28a745;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
}

.feature-text {
    color: #495057;
    line-height: 1.5;
}

/* Pricing Actions */
.pricing-actions {
    text-align: center;
}

.pricing-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pricing-card.popular .pricing-btn {
    background: linear-gradient(135deg, #007cba, #0056b3);
    color: white;
    border: none;
}

.pricing-card.popular .pricing-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 124, 186, 0.3);
}

.pricing-card:not(.popular) .pricing-btn {
    background: #f8f9fa;
    color: #007cba;
    border: 2px solid #007cba;
}

.pricing-card:not(.popular) .pricing-btn:hover {
    background: #007cba;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 124, 186, 0.2);
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
    margin-top: 3rem;
}

.pricing-note {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-section {
    padding: 60px 0;
}
    
    .section-title {
    font-size: 2rem;
}
    
    .section-subtitle {
    font-size: 1.1rem;
}
    
    .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
    
    .pricing-card {
    padding: 1.5rem;
}
    
    .pricing-card.popular {
    transform: none;
}
    
    .pricing-card.popular:hover {
    transform: translateY(-8px);
}
    
    .price-amount {
    font-size: 2.5rem;
}
    
    .pricing-title {
    font-size: 1.3rem;
}
}

@media (max-width: 480px) {
    .pricing-section {
    padding: 40px 0;
}
    
    .section-header {
    margin-bottom: 40px;
}
    
    .section-title {
    font-size: 1.8rem;
}
    
    .pricing-card {
    padding: 1.25rem;
}
    
    .price-amount {
    font-size: 2rem;
}
    
    .pricing-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px);
}
    to {
    opacity: 1;
    transform: translateY(0);
}
}

.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Loading state */
.pricing-loading {
    text-align: center;
    padding: 4rem 0;
}

.pricing-loading .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007cba;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% {
    transform: rotate(0deg);
}
    100% {
    transform: rotate(360deg);
}
}

/* §ab62-4 */
/* Footer Container */
.site-footer {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 40px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Main Section */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.logo-letter {
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
}

.footer-logo-text {
    display: flex;
    align-items: center;
}

.site-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

/* Footer Menu */
.footer-menu {
    display: flex;
    flex-direction: column;
}

.footer-menu-title {
    font-size: 14px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Arial', sans-serif;
}

.footer-navigation {
    display: flex;
    flex-direction: column;
}

.footer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-menu-list li {
    margin: 0;
}

.footer-menu-list a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.2s ease;
}

.footer-menu-list a:hover {
    color: #8B5CF6;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-title {
    font-size: 14px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Arial', sans-serif;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.contact-value {
    font-size: 14px;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

/* Payment Methods */
.footer-payment-methods {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.payment-methods-container {
    display: flex;
    gap: 20px;
    align-items: center;
}

.payment-method {
    display: flex;
    align-items: center;
}

.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

/* Mastercard Logo */
.mastercard-circles {
    position: relative;
    width: 30px;
    height: 20px;
}

.circle {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.circle-red {
    background-color: #EB001B;
    left: 0;
    z-index: 1;
}

.circle-orange {
    background-color: #F79E1B;
    right: 0;
    z-index: 2;
}

/* Visa Logo */
.visa-text {
    font-size: 14px;
    font-weight: bold;
    color: #1A1F71;
    font-family: 'Arial', sans-serif;
}

/* Copyright */
.footer-copyright {
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 15px 0;
}

.copyright-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    justify-items: center;
}

.copyright-content p {
    margin: 0;
    font-size: 12px;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}
    
    .footer-logo-container {
    justify-content: center;
}
    
    .footer-menu-list {
    align-items: center;
}
    
    .footer-contact-details {
    align-items: center;
}
    
    .contact-item {
    align-items: center;
}
    
    .payment-methods-container {
    gap: 15px;
}
}

@media (max-width: 480px) {
    .footer-content {
    padding: 0 15px;
}
    
    .copyright-content {
    padding: 0 15px;
}
    
    .footer-main {
    gap: 25px;
}
    
    .site-footer {
    padding: 30px 0 0;
}
}

/* §ab62-5 */
.wpcf7 form.contact-form {
    max-width: 600px;
    margin: 0 auto;
    font-family: "Segoe UI", Arial, sans-serif;
}

.wpcf7 form.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333333;
}

/* Row and Columns */
.wpcf7 form.contact-form .cf7-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.wpcf7 form.contact-form .cf7-col {
    flex: 1;
    min-width: 250px;
}

/* Inputs, Textarea, Captcha */
.wpcf7 form.contact-form input[type="text"],
.wpcf7 form.contact-form input[type="email"],
.wpcf7 form.contact-form input[type="tel"],
.wpcf7 form.contact-form textarea,
.wpcf7 form.contact-form input[type="number"],
.wpcf7 form.contact-form input[type="url"],
.wpcf7 form.contact-form input[type="password"],
.wpcf7 form.contact-form input[type="search"],
.wpcf7 form.contact-form input[type="date"],
.wpcf7 form.contact-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 15px;
    background: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.wpcf7 form.contact-form input:focus,
.wpcf7 form.contact-form textarea:focus,
.wpcf7 form.contact-form select:focus {
    border-color: #0073e6;
    box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.15);
    outline: none;
}

/* Textarea */
.wpcf7 form.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Captcha Field */
.wpcf7 form.contact-form #input-captcha-cf7 {
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Submit Button */
.wpcf7 form.contact-form input[type="submit"] {
    background: #0073e6;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.wpcf7 form.contact-form input[type="submit"]:hover {
    background: #005bb5;
    transform: translateY(-2px);
}

.wpcf7 form.contact-form input[type="submit"]:active {
    background: #004999;
    transform: translateY(0);
}

/* Validation Errors */
.wpcf7 form.contact-form .wpcf7-not-valid-tip {
    color: #d93025;
    font-size: 13px;
    margin-top: 4px;
}

.wpcf7 form.contact-form .wpcf7-response-output {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
}

/* Success & Error messages */
.wpcf7 form.contact-form .wpcf7-mail-sent-ok {
    background: #e6f9f0;
    border: 1px solid #34c759;
    color: #065f46;
}

.wpcf7 form.contact-form .wpcf7-validation-errors,
.wpcf7 form.contact-form .wpcf7-acceptance-missing {
    background: #fef2f2;
    border: 1px solid #f87171;
    color: #7f1d1d;
}

/* Wrap styling */
.wpcf7 form.contact-form .captcha-cf7-wrap {
    margin: 20px 0;
}

/* Flex container for input + image + refresh */
.wpcf7 form.contact-form .captcha-cf7-wrap .main-cf7-captcha {
    display: flex;
    align-items: center;
    gap: 12px;
    /* spacing between items */;
}

/* Captcha styling */
.captcha-image-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

#captcha-canvas {
    border: 1px solid #cccccc;
    background: #f9f9f9;
    border-radius: 4px;
}

#reload_captcha {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #0073e6;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

#reload_captcha:hover {
    background: #005bb5;
    text-decoration: none;
}

.captcha-refresh-icon {
    font-size: 16px;
}

/* Loading states for contact form */
.wpcf7 form.contact-form.form-loading {
    opacity: 0.8;
    pointer-events: none;
    position: relative;
}

.wpcf7 form.contact-form.form-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
    border-radius: 8px;
}

.wpcf7 form.contact-form input[type="submit"].loading {
    opacity: 0.7;
    cursor: not-allowed;
    background: #6c757d;
    color: #ffffff;
}

.wpcf7 form.contact-form .wpcf7-spinner {
    display: none;
    margin-left: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0073e6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.wpcf7 form.contact-form .wpcf7-spinner.show {
    display: inline-block;
}

@keyframes spin {
    0% {
    transform: rotate(0deg);
}
    100% {
    transform: rotate(360deg);
}
}

/* Field validation */
.wpcf7 form.contact-form .wpcf7-form-control-wrap.wpcf7-not-valid {
    border-color: #f87171;
}

.wpcf7 form.contact-form .wpcf7-form-control-wrap.wpcf7-not-valid input,
.wpcf7 form.contact-form .wpcf7-form-control-wrap.wpcf7-not-valid textarea {
    border-color: #f87171;
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}

.wpcf7 form.contact-form .field-error {
    color: #d93025;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

/* Form container */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form-container {
    padding: 15px;
}
    
    .wpcf7 form.contact-form input[type="text"],
    .wpcf7 form.contact-form input[type="email"],
    .wpcf7 form.contact-form input[type="tel"],
    .wpcf7 form.contact-form textarea {
    font-size: 16px;
    /* Prevents zoom on iOS */;
}
    
    .captcha-image-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
}

/* §ab62-6 */
.wpcf7 form.unsubscribe-form {
    max-width: 600px;
    margin: 0 auto;
    font-family: "Segoe UI", Arial, sans-serif;
}

.wpcf7 form.unsubscribe-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333333;
}

/* Row and Columns */
.wpcf7 form.unsubscribe-form .cf7-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.wpcf7 form.unsubscribe-form .cf7-col {
    flex: 1;
    min-width: 250px;
}

/* Inputs, Textarea, Captcha */
.wpcf7 form.unsubscribe-form input[type="text"],
.wpcf7 form.unsubscribe-form input[type="email"],
.wpcf7 form.unsubscribe-form input[type="tel"],
.wpcf7 form.unsubscribe-form textarea,
.wpcf7 form.unsubscribe-form input[type="number"],
.wpcf7 form.unsubscribe-form input[type="url"],
.wpcf7 form.unsubscribe-form input[type="password"],
.wpcf7 form.unsubscribe-form input[type="search"],
.wpcf7 form.unsubscribe-form input[type="date"],
.wpcf7 form.unsubscribe-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 15px;
    background: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.wpcf7 form.unsubscribe-form input:focus,
.wpcf7 form.unsubscribe-form textarea:focus,
.wpcf7 form.unsubscribe-form select:focus {
    border-color: #0073e6;
    box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.15);
    outline: none;
}

/* Textarea */
.wpcf7 form.unsubscribe-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Captcha Field */
.wpcf7 form.unsubscribe-form #input-captcha-cf7 {
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Submit Button */
.wpcf7 form.unsubscribe-form input[type="submit"] {
    background: #0073e6;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.wpcf7 form.unsubscribe-form input[type="submit"]:hover {
    background: #005bb5;
    transform: translateY(-2px);
}

.wpcf7 form.unsubscribe-form input[type="submit"]:active {
    background: #004999;
    transform: translateY(0);
}

/* Validation Errors */
.wpcf7 form.unsubscribe-form .wpcf7-not-valid-tip {
    color: #d93025;
    font-size: 13px;
    margin-top: 4px;
}

.wpcf7 form.unsubscribe-form .wpcf7-response-output {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
}

/* Success & Error messages */
.wpcf7 form.unsubscribe-form .wpcf7-mail-sent-ok {
    background: #e6f9f0;
    border: 1px solid #34c759;
    color: #065f46;
}

.wpcf7 form.unsubscribe-form .wpcf7-validation-errors,
.wpcf7 form.unsubscribe-form .wpcf7-acceptance-missing {
    background: #fef2f2;
    border: 1px solid #f87171;
    color: #7f1d1d;
}

/* Loading states */
.wpcf7 form.unsubscribe-form.form-loading {
    opacity: 0.8;
    pointer-events: none;
    position: relative;
}

.wpcf7 form.unsubscribe-form.form-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
    border-radius: 8px;
}

.wpcf7 form.unsubscribe-form input[type="submit"].loading {
    opacity: 0.7;
    cursor: not-allowed;
    background: #6c757d;
    color: #ffffff;
}

.wpcf7 form.unsubscribe-form .wpcf7-spinner {
    display: none;
    margin-left: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0073e6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.wpcf7 form.unsubscribe-form .wpcf7-spinner.show {
    display: inline-block;
}

@keyframes spin {
    0% {
    transform: rotate(0deg);
}
    100% {
    transform: rotate(360deg);
}
}

/* Field validation */
.wpcf7 form.unsubscribe-form .wpcf7-form-control-wrap.wpcf7-not-valid {
    border-color: #f87171;
}

.wpcf7 form.unsubscribe-form .wpcf7-form-control-wrap.wpcf7-not-valid input {
    border-color: #f87171;
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}

.wpcf7 form.unsubscribe-form .field-error {
    color: #d93025;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

/* Form container */
.unsubscribe-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .unsubscribe-form-container {
    padding: 15px;
}
    
    .wpcf7 form.unsubscribe-form input[type="text"],
    .wpcf7 form.unsubscribe-form input[type="email"] {
    font-size: 16px;
    /* Prevents zoom on iOS */;
}
}
