/* ============================================
   GOODSPOUSE CUSTOM STYLES
   All custom styles for the website
   ============================================ */

/* ============================================
   BLOG LIST PAGE
   ============================================ */

/* Modern Blog List Styles */
.blog-list-section {
    padding: 150px 0 80px 0; /* Extra top padding to clear fixed header */
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.blog-list-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-list-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #EF066C, #FF6B9D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-list-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 0;
    padding: 0;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    animation: fadeInUp 0.6s ease forwards;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(239, 6, 108, 0.15);
    border-color: rgba(239, 6, 108, 0.2);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-image::after {
    opacity: 1;
}

.blog-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card:hover .blog-card-title {
    color: #EF066C;
}

.blog-card-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.blog-card-date {
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-date i {
    color: #EF066C;
}

.blog-card-read-more {
    color: #EF066C;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-card-read-more i {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-read-more i {
    transform: translateX(5px);
}

/* Pagination Styling */
.blog-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.blog-pagination .pagination {
    gap: 10px;
}

.blog-pagination .page-link {
    border-radius: 8px;
    border: 2px solid #f0f0f0;
    color: #666;
    font-weight: 600;
    padding: 10px 18px;
    transition: all 0.3s ease;
}

.blog-pagination .page-link:hover {
    background: #EF066C;
    color: white;
    border-color: #EF066C;
}

.blog-pagination .page-item.active .page-link {
    background: linear-gradient(45deg, #EF066C, #FF6B9D);
    border-color: #EF066C;
    color: white;
}

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

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-card:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   PAGES (Privacy, Terms, etc.)
   ============================================ */

.page-content-section {
    padding: 150px 0 80px 0; /* Extra top padding to clear fixed header */
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.page-content-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.page-content-header h1 {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #EF066C, #FF6B9D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-content-body {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.page-content-body h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content-body h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.page-content-body ul,
.page-content-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content-body li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.page-content-body a {
    color: #EF066C;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-content-body a:hover {
    color: #FF6B9D;
    text-decoration: underline;
}

.page-content-body strong {
    color: #1a1a1a;
    font-weight: 700;
}

.page-content-body code {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #EF066C;
}

/* ============================================
   HOME PAGE - CONTACT FORM
   ============================================ */

.contact-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7fc 0%, #fef2f6 100%);
}

.contact-us-section .section-heading {
    margin-bottom: 10px;
}

.contact-us-section .contact-subtitle {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 35px;
    max-width: 700px;
    color: #666;
}

.contact-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.modern-contact-form .form-group-modern {
    position: relative;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #EF066C;
    background: white;
    box-shadow: 0 0 0 3px rgba(239, 6, 108, 0.1);
}

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

.recaptcha-wrapper {
    display: flex;
    justify-content: center;
}

.btn-submit-modern {
    background: linear-gradient(45deg, #EF066C 0%, #FFA7CD 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(239, 6, 108, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(239, 6, 108, 0.4);
}

.btn-submit-modern .btn-icon {
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover .btn-icon {
    transform: translateX(5px);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(239, 6, 108, 0.12);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #EF066C, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.contact-card-icon i {
    font-size: 28px;
    color: white;
}

.contact-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-card-text {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.contact-card a {
    color: #EF066C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #FF6B9D;
}

/* ============================================
   HOME PAGE - TRUST INDICATORS
   ============================================ */

.trust-indicators {
    background: linear-gradient(45deg, #EF066C 0%, #FFA7CD 100%);
    padding: 60px 0;
    margin-top: -5rem;
}

.trust-stat__number {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.trust-stat__label {
    font-size: 18px;
    color: #ffd4e3;
    font-weight: 600;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-badges .badge-item {
    background: rgba(255,255,255,0.2);
    padding: 15px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.trust-badges .badge-item:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.trust-badges .badge-item i {
    font-size: 24px;
}

/* ============================================
   HOME PAGE - IMPROVED FEATURES
   ============================================ */

/* Icon images - fill the circle properly */
.icon img,
.feature__box .icon img,
.growth__box .icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
}

.feature__box .icon,
.growth__box .icon {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fallback Font Awesome icons when images are missing */
.icon i.fas,
.feature__box .icon i.fas,
.growth__box .icon i.fas {
    font-size: 80px;
    color: white;
}

/* ============================================
   HOME PAGE - BLOG SECTION
   ============================================ */

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-card-home {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(239, 6, 108, 0.2);
}

.blog-card-home img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-home:hover img {
    transform: scale(1.1);
}

.blog-card-content-home {
    padding: 25px;
    flex: 1;
}

.blog-card-content-home h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-content-home h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-home:hover h3 a {
    color: #EF066C;
}

.blog-card-content-home p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-read-more {
    color: #EF066C;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
}

/* ============================================
   HOME PAGE - VIDEO SECTION
   ============================================ */

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* Blog List Page */
    .blog-list-section {
        padding: 120px 0 60px 0; /* Extra top padding for mobile header */
    }
    
    .blog-list-header h1 {
        font-size: 36px;
    }
    
    .blog-list-header p {
        font-size: 16px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card-image {
        height: 220px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 18px;
    }
    
    /* Page Content */
    .page-content-section {
        padding: 120px 0 60px 0; /* Extra top padding for mobile header */
    }
    
    .page-content-header h1 {
        font-size: 32px;
    }
    
    .page-content-body {
        padding: 30px 20px;
    }
    
    .page-content-body h2 {
        font-size: 24px;
    }
    
    .page-content-body h3 {
        font-size: 20px;
    }
    
    /* Contact Form */
    .contact-us-section {
        padding: 60px 0;
    }
    
    .contact-us-section .contact-subtitle {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-info-cards {
        flex-direction: column;
        margin-top: 30px;
    }
    
    /* Trust Indicators */
    .trust-stat__number {
        font-size: 32px;
    }
    
    .trust-stat__label {
        font-size: 14px;
    }
    
    .trust-badges .badge-item {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.button--wide {
    width: auto;
    min-width: 271px;
    padding: 0 30px;
}

/* Smooth transitions for all interactive elements */
button,
a,
.button,
.blog-card,
.contact-card {
    -webkit-tap-highlight-color: transparent;
}

/* Improve button accessibility */
button:focus,
a:focus,
.button:focus {
    outline: 2px solid #EF066C;
    outline-offset: 4px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ============================================
   HOME PAGE - ADDITIONAL STYLES
   ============================================ */

/* Questions/FAQ image styling */
.questions-img img {
    z-index: 10;
    position: relative;
    filter: drop-shadow(0px 20px 10px rgba(75, 80, 84, 0.2));
    -webkit-filter: drop-shadow(0px 20px 10px rgba(75, 80, 84, 0.2));
    -webkit-transform: var(--transform-fix);
    transform: var(--transform-fix);
    max-width: 300px;
    width: auto;
}

/* Section spacing */
section {
    margin-bottom: 5px;
    position: relative;
}

.questions__wrapper,
.screenshot__wrapper,
.hero__wrapper {
    padding-bottom: 40px;
}

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

/* Button improvements */
.button--wide {
    width: 50rem;
    max-width: 100%;
}

.button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.button:hover::before {
    width: 300px;
    height: 300px;
}

.button span {
    position: relative;
    z-index: 1;
}

/* Video preview styles */
.video-preview-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 25px;
    border: 2px solid pink;
    object-fit: cover;
}

.video__background {
    margin: auto;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Home page blog cards */
.home-blog-card {
    background: #fff;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.home-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(239, 6, 108, 0.15);
}

.home-blog-card__image {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.home-blog-card__content {
    padding: 16px;
    color: #000;
    height: calc(100% - 270px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-blog-card__title {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display: block;
}

.home-blog-card__title:hover {
    color: #EF066C;
}

.home-blog-card__excerpt {
    font-size: 16px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666b6d;
}

.home-blog-card__read-more {
    color: #ef066c;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.home-blog-card__date {
    font-size: 15px;
    color: #999;
    margin-top: 15px;
}

/* Blog section on home */
.blog-section-row {
    padding: 60px 0;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-see-all {
    font-size: 16px;
    font-weight: 600;
    color: #EF066C;
    text-decoration: none;
    padding: 12px 30px;
    border: 2px solid #EF066C;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-see-all:hover {
    background: #EF066C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 6, 108, 0.3);
}

/* Enhanced UI animations */
.feature__box {
    transition: all 0.4s ease;
}

.feature__box:hover {
    transform: translateY(-10px);
}

.feature__box .icon {
    transition: transform 0.3s ease;
}

.feature__box:hover .icon {
    transform: scale(1.05);
}

.growth__box {
    transition: all 0.3s ease;
}

.growth__box:hover {
    transform: translateY(-2px);
}

.growth__box .icon {
    transition: transform 0.3s ease;
}

.growth__box:hover .icon {
    transform: scale(1.08);
}

/* Download buttons enhanced */
.download-buttons a {
    transition: all 0.3s ease;
}

.download-buttons a:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Newsletter section */
.newsletter {
    padding: 60px 0;
}

.newsletter__info {
    margin-bottom: 20px;
}

.input-field {
    padding: 12px;
    font-size: 16px;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
}

.btn-primary i {
    margin-left: 8px;
}

.newsletter__img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Hero section images */
.hero .hero-img .hero-image {
    max-width: 100%;
    height: auto;
}

/* Contact card icon variations */
.contact-card-icon.icon-blue {
    background: linear-gradient(45deg, #2986CC 0%, #65bef4 100%);
    box-shadow: 0 8px 20px rgba(41, 134, 204, 0.3);
}

.contact-card-icon.icon-green {
    background: linear-gradient(45deg, #19a5a1 0%, #63e8e4 100%);
    box-shadow: 0 8px 20px rgba(25, 165, 161, 0.3);
}

.contact-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 15px;
    color: #666b6d;
    margin: 0;
}

/* ============================================
   RESPONSIVE - ADDITIONAL
   ============================================ */

@media (min-width: 768px) {
    .hero .hero-img .hero-image {
        max-width: 80%;
    }
}

@media (min-width: 992px) {
    .hero .hero-img .hero-image {
        max-width: 60%;
    }
}

@media (max-width: 991px) {
    .contact-form-wrapper {
        padding: 30px;
        margin-bottom: 40px;
    }
    
    .contact-info-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .contact-card {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    section {
        margin-bottom: 40px;
    }
    
    .blog-header {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-header .section-heading {
        font-size: 32px;
        width: 100%;
    }
    
    .home-blog-card {
        height: auto;
    }
    
    .home-blog-card__content {
        height: auto;
        min-height: 200px;
    }
    
    .btn-submit-modern {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .contact-form-wrapper,
    .contact-info-cards,
    .trust-indicators,
    .blog-card-read-more {
        display: none;
    }
    
    .blog-card,
    .page-content-body {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

.site-legal-bar {
    background: #f8f8f8;
    border-bottom: 1px solid #ececec;
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.site-legal-bar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
}

.site-legal-bar a {
    color: #333;
    text-decoration: underline;
    font-weight: 600;
}

.site-legal-bar a:hover,
.site-legal-bar a:focus {
    color: #ef066c;
}

.site-legal-bar span {
    opacity: 0.45;
}

.footer__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.75rem;
}

.footer__legal a {
    color: inherit;
    text-decoration: underline;
    font-size: 0.95rem;
}

.footer__legal a:hover,
.footer__legal a:focus {
    opacity: 0.85;
}

.footer__legal span {
    opacity: 0.6;
}

/* ============================================
   GOO-552 LANDING REDESIGN
   ============================================ */

:root {
    --gs-primary: #EF066C;
    --gs-primary-soft: #FF6B9D;
    --gs-primary-light: #FFA7CD;
    --gs-surface: #F0F7FC;
    --gs-surface-alt: #ffffff;
    --gs-text: #1a1a1a;
    --gs-text-muted: #4a4f52;
    --gs-text-link: #3d4346;
    --gs-radius: 1.6rem;
    --gs-shadow: 0 12px 40px rgba(26, 26, 26, 0.08);
    --gs-shadow-hover: 0 18px 48px rgba(239, 6, 108, 0.14);
    --gs-section-pad: 6rem;
}

.section-heading {
    margin-bottom: 3rem;
}

.hero,
.feature,
.growth,
.step,
.questions,
.screenshot,
.contact-us-section,
.newsletter,
.trust-indicators {
    position: relative;
}

@media (max-width: 768px) {
    :root {
        --gs-section-pad: 4rem;
    }
}

/* Kill legacy purple gradients → brand pink */
.hero .hero-img::before,
.video__background::before {
    background: linear-gradient(45deg, #EF066C 0%, #FF6B9D 50%, #EF066C 100%) !important;
    filter: drop-shadow(0 24px 18px rgba(239, 6, 108, 0.28)) !important;
    -webkit-filter: drop-shadow(0 24px 18px rgba(239, 6, 108, 0.28)) !important;
    opacity: 0.85;
}

.feature__box .icon.icon-1,
.growth__box .icon.icon-1,
.step .icon.icon-1 {
    background: linear-gradient(135deg, #EF066C 0%, #FF6B9D 100%) !important;
    filter: drop-shadow(0 16px 12px rgba(239, 6, 108, 0.25)) !important;
    -webkit-filter: drop-shadow(0 16px 12px rgba(239, 6, 108, 0.25)) !important;
}

.video__play > button {
    background: linear-gradient(45deg, #EF066C 0%, #FF6B9D 50%, #EF066C 100%) !important;
    filter: drop-shadow(0 20px 14px rgba(239, 6, 108, 0.35)) !important;
    -webkit-filter: drop-shadow(0 20px 14px rgba(239, 6, 108, 0.35)) !important;
}

.video .modal-close button,
.video .modal-close:hover button i {
    background-color: var(--gs-primary) !important;
}

.video .modal-close:hover button {
    background-color: #fff !important;
}

.video .modal-close:hover button i {
    color: var(--gs-primary) !important;
}

/* ---------- Header ---------- */
.header.header-2 {
    padding: 1.6rem 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.header.header-2.fixed {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

.header__logo a {
    display: inline-flex;
    align-items: center;
}

.header__logo img {
    height: 48px;
    width: auto !important;
    max-width: 200px;
    object-fit: contain;
}

@media (max-width: 576px) {
    .header__logo img {
        height: 40px;
        max-width: 160px;
        width: auto !important;
    }
}

.header__nav-primary > li > a {
    font-weight: 600;
    color: var(--gs-text);
    transition: color 0.25s ease;
}

.header__nav-primary > li > a:hover,
.header__nav-primary > li > a:focus {
    color: var(--gs-primary);
}

.header .nav__dropdown-info {
    border: 1px solid rgba(239, 6, 108, 0.25);
    border-radius: 999px;
    padding: 0.6rem 1.4rem !important;
    color: var(--gs-primary) !important;
    font-weight: 600;
}

.header__bars {
    padding: 0.8rem;
    border-radius: 0.8rem;
}

.header__bars:hover {
    border-color: rgba(239, 6, 108, 0.35) !important;
}

.header__bars-bar {
    background-color: var(--gs-primary) !important;
}

/* Mobile drawer */
@media (min-width: 992px) {
    html[dir="rtl"] .header__nav-primary > li:nth-child(n+2) {
        margin-left: 0;
        margin-right: 3rem;
    }
}

@media (min-width: 992px) and (max-width: 1270px) {
    .header__nav-primary > li:nth-child(n+2) {
        margin-left: 1.5rem;
    }

    html[dir="rtl"] .header__nav-primary > li:nth-child(n+2) {
        margin-right: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .header__nav {
        background: linear-gradient(160deg, #EF066C 0%, #FF6B9D 100%) !important;
        height: 100vh !important;
        height: 100dvh !important;
        top: 0 !important;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        z-index: 1100;
        transition: right 0.35s ease, left 0.35s ease;
    }

    html[dir="rtl"] .header__nav {
        right: auto;
        left: 100%;
    }

    html[dir="rtl"] .header__nav.shown {
        left: 0;
        right: auto;
    }

    .header__nav > span {
        display: block;
        position: absolute;
        top: 8%;
        right: 5%;
        font-size: 3rem;
        color: white;
        font-weight: 900 !important;
        cursor: pointer;
        z-index: 2;
    }

    html[dir="rtl"] .header__nav > span {
        right: auto;
        left: 5%;
    }

    .header__nav-primary {
        margin-top: 5rem !important;
        flex: 1;
        padding-bottom: 2rem;
    }

    .header__nav-primary > li > a {
        font-size: 1.8rem !important;
        font-weight: 600;
        padding: 1.4rem 2.4rem !important;
        min-height: 48px;
        display: flex !important;
        align-items: center;
        color: #fff !important;
    }

    .header__nav-primary > li:hover {
        background-color: rgba(255, 255, 255, 0.15) !important;
    }

    .header__nav-primary > li:hover > a,
    .header__nav-primary > li:hover i {
        color: #fff !important;
    }

    .header__nav-primary .nav__dropdown {
        margin-top: 1rem;
        padding: 0 2.4rem;
    }

    .header__nav-primary .nav__dropdown-info {
        display: inline-flex !important;
        width: auto !important;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.45);
        color: #fff !important;
        border-radius: 999px;
        padding: 1rem 1.8rem !important;
        min-height: 44px;
        align-items: center;
    }

    .header__nav-primary .nav__dropdown:hover {
        background: transparent !important;
    }

    .header__nav-primary .nav__dropdown-box {
        background: #fff;
        border-radius: 1.2rem !important;
        margin-top: 0.8rem;
        box-shadow: var(--gs-shadow);
        position: relative !important;
        width: 100% !important;
    }

    .header__nav-primary .nav__dropdown-box li a {
        color: var(--gs-text) !important;
        padding: 1.2rem 1.6rem !important;
        font-size: 1.5rem !important;
    }

    .header__nav-primary .nav__dropdown-box li:hover {
        background: rgba(239, 6, 108, 0.08) !important;
    }

    .header__nav-primary .nav__dropdown-box li:hover a {
        color: var(--gs-primary) !important;
    }
}

/* ---------- Footer ---------- */
.footer {
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.footer__wrapper {
    padding: 5rem 0 3rem !important;
}

.footer__info--logo {
    margin-bottom: 2rem !important;
}

.footer__info--logo img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer__info--content .paragraph {
    width: 100% !important;
    max-width: 320px;
    color: var(--gs-text-muted);
    margin-bottom: 2rem !important;
}

.footer__list ul li:first-child {
    margin-bottom: 2rem !important;
    font-size: 1.7rem;
    color: var(--gs-text);
}

.footer__list ul li a {
    color: var(--gs-text-link) !important;
    font-weight: 500;
}

.footer__list ul li a:hover {
    color: var(--gs-primary) !important;
}

.footer__content-wrapper {
    gap: 2rem;
    flex-wrap: wrap;
}

.footer .download-buttons h5 {
    margin-bottom: 2rem !important;
}

.footer__copy h6 {
    color: var(--gs-text-muted) !important;
}

.footer__copy a {
    color: var(--gs-primary);
    font-weight: 600;
}

.footer .social ul {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer .social ul li a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: transform 0.25s ease;
}

.footer .social ul li a:hover {
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .footer__wrapper {
        text-align: left !important;
        width: calc(100% - 3rem) !important;
        padding: 4rem 2rem 3rem !important;
    }

    html[dir="rtl"] .footer__wrapper {
        text-align: right !important;
    }

    .footer__info--content .paragraph {
        margin: 0 0 2rem 0 !important;
    }

    .footer__content-wrapper {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 2.4rem;
        justify-content: stretch !important;
    }

    .footer .download-buttons {
        grid-column: 1 / -1;
        margin-right: 0 !important;
    }

    .footer .download-buttons a {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .footer__copy {
        text-align: left !important;
    }

    html[dir="rtl"] .footer__copy {
        text-align: right !important;
    }
}

@media (max-width: 575.98px) {
    .footer__content-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ---------- Hero ---------- */
.hero-2 {
    margin-top: 8rem;
}

.hero .main-heading {
    font-size: clamp(3.2rem, 5vw, 6.4rem) !important;
    letter-spacing: -0.02em;
    line-height: 1.15;
    font-weight: 700;
}

.hero .paragraph {
    color: var(--gs-text-muted);
    max-width: 52rem;
}

@media (max-width: 991.98px) {
    .hero .main-heading,
    .hero .paragraph {
        text-align: center;
    }

    .hero .paragraph {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .hero .main-heading {
        font-size: 3.2rem !important;
    }

    .hero-2 .hero__wrapper {
        padding: 6rem 0 4rem !important;
    }
}

/* ---------- Trust ---------- */
.trust-indicators {
    border-radius: 0;
    margin-top: -2rem;
    padding: 5rem 0;
}

.trust-stat__number {
    font-size: clamp(2.8rem, 4vw, 4.4rem);
}

.trust-stat__label {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.5rem;
}

/* ---------- Intro feature cards ---------- */
.feature {
    padding: var(--gs-section-pad) 0;
}

.feature .section-heading {
    text-align: center;
}

.feature__box,
.feature__box--1,
.feature__box--2,
.feature__box--3,
.feature__box--4 {
    margin-top: 0 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature__box:hover,
.feature__box--1:hover,
.feature__box--2:hover,
.feature__box--3:hover,
.feature__box--4:hover {
    margin-top: 0 !important;
    transform: translateY(-6px);
}

.feature__box .icon {
    width: 7.2rem !important;
    height: 7.2rem !important;
    margin: 0 0 1.6rem 0 !important;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.feature__box .icon i.fas {
    font-size: 2.8rem !important;
}

.feature__box:hover .icon {
    transform: scale(1.05) !important;
}

.feature__box__wrapper {
    background: var(--gs-surface-alt) !important;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--gs-radius) !important;
    margin-top: 0 !important;
    padding: 2.4rem !important;
    box-shadow: var(--gs-shadow);
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.feature__box:hover .feature__box__wrapper {
    box-shadow: var(--gs-shadow-hover);
}

.feature__box .icon {
    width: 7.2rem !important;
    height: 7.2rem !important;
    margin: 0 0 1.6rem 0 !important;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.feature__box .icon.icon-1 {
    background: linear-gradient(135deg, #EF066C 0%, #FF6B9D 100%) !important;
    filter: drop-shadow(0 12px 10px rgba(239, 6, 108, 0.25)) !important;
    -webkit-filter: drop-shadow(0 12px 10px rgba(239, 6, 108, 0.25)) !important;
}

.feature__box .icon.icon-2 {
    background: linear-gradient(135deg, #FF7A59 0%, #FFB347 100%) !important;
    filter: drop-shadow(0 12px 10px rgba(255, 122, 89, 0.25)) !important;
    -webkit-filter: drop-shadow(0 12px 10px rgba(255, 122, 89, 0.25)) !important;
}

.feature__box .icon.icon-3 {
    background: linear-gradient(135deg, #19A5A1 0%, #63E8E4 100%) !important;
    filter: drop-shadow(0 12px 10px rgba(25, 165, 161, 0.25)) !important;
    -webkit-filter: drop-shadow(0 12px 10px rgba(25, 165, 161, 0.25)) !important;
}

.feature__box .icon.icon-4 {
    background: linear-gradient(135deg, #EF066C 0%, #FFA7CD 100%) !important;
    filter: drop-shadow(0 12px 10px rgba(239, 6, 108, 0.25)) !important;
    -webkit-filter: drop-shadow(0 12px 10px rgba(239, 6, 108, 0.25)) !important;
}

.feature__box--content {
    background: transparent !important;
    text-align: left !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.feature__box--content::before {
    display: none !important;
}

.feature__box--content h3 {
    font-size: 1.8rem !important;
    font-weight: 700;
    color: var(--gs-text);
    margin-bottom: 1rem;
    line-height: 1.35;
}

.feature__box--content .paragraph {
    text-align: left;
    color: var(--gs-text-muted);
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.6;
}

html[dir="rtl"] .feature__box--content,
html[dir="rtl"] .feature__box--content .paragraph,
html[dir="rtl"] .feature__box .icon {
    text-align: right !important;
}

html[dir="rtl"] .feature__box .icon {
    margin-right: 0;
    margin-left: auto;
}

.feature-intro-card {
    margin-bottom: 2.4rem;
}

/* ---------- Growth / Step ---------- */
.growth,
.step {
    padding: var(--gs-section-pad) 0;
}

.growth__box,
.step .growth__box {
    align-items: flex-start;
    padding: 1.6rem;
    border-radius: var(--gs-radius);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.growth__box:hover {
    background: rgba(239, 6, 108, 0.04);
    transform: translateY(-2px) !important;
}

.growth__box .icon {
    width: 6.4rem !important;
    height: 6.4rem !important;
    flex-shrink: 0;
}

.growth__box .icon i.fas {
    font-size: 2.4rem !important;
}

.growth__box .content h3,
.growth__box .content h4 {
    color: var(--gs-text);
    font-weight: 700;
}

.growth__box .content .paragraph {
    color: var(--gs-text-muted);
}

.growth .button__wrapper a,
.growth .button {
    background: linear-gradient(135deg, #EF066C 0%, #FF6B9D 100%) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(239, 6, 108, 0.3);
}

.growth .button__wrapper a:hover {
    filter: none !important;
    transform: translateY(-2px);
}

/* ---------- Video ---------- */
.video {
    margin-top: 0;
    padding: 2rem 0 var(--gs-section-pad);
}

.video__play > button {
    width: 8rem !important;
    height: 8rem !important;
    min-width: 64px;
    min-height: 64px;
}

.video__play > button i {
    font-size: 3rem !important;
}

.video-preview-img {
    border: 0 !important;
    border-radius: 2rem !important;
    box-shadow: var(--gs-shadow);
}

/* ---------- FAQ ---------- */
.questions {
    padding: var(--gs-section-pad) 0;
}

.questions #accordion .card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.2rem !important;
    margin-bottom: 1.2rem;
    overflow: visible;
    box-shadow: none;
    background: #fff;
}

.questions #accordion .card-header {
    background: #fff;
    border: 0;
    padding: 0;
    position: relative;
}

.questions #accordion .card-header h5 {
    position: relative;
    margin: 0;
    padding: 0;
}

.questions #accordion .btn-link {
    width: 100%;
    display: block;
    text-align: left !important;
    color: var(--gs-text) !important;
    font-weight: 600;
    font-size: 1.6rem;
    padding: 1.8rem 2rem 1.8rem 5.2rem !important;
    text-decoration: none;
    min-height: 56px;
    white-space: normal;
    position: relative;
}

.questions #accordion .card-header h5::before {
    content: "\f056";
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 2.2rem;
    color: #EF066C !important;
    position: absolute;
    top: 50%;
    left: 1.8rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    display: inline-block;
    z-index: 1;
}

.questions #accordion .card-header h5.hidden::before {
    content: "\f055";
}

.questions #accordion .btn-link:hover,
.questions #accordion .btn-link:focus {
    color: var(--gs-primary) !important;
    text-decoration: none;
}

.questions #accordion .card:has(.collapse.show) .btn-link {
    color: var(--gs-primary) !important;
}

.questions #accordion .card-body {
    padding: 0 2rem 2rem;
}

.questions #accordion .card-body .paragraph {
    color: var(--gs-text-muted);
    margin: 0;
}

.questions #accordion .collapse.show,
.questions #accordion .collapsing {
    border-top: 2px solid rgba(239, 6, 108, 0.2);
}

html[dir="rtl"] .questions #accordion .btn-link {
    text-align: right !important;
    padding: 1.8rem 5.2rem 1.8rem 2rem !important;
}

html[dir="rtl"] .questions #accordion .card-header h5::before {
    left: auto;
    right: 1.8rem;
}

/* ---------- Preview / screenshots ---------- */
.screenshot {
    padding: var(--gs-section-pad) 0;
}

.screenshot__wrapper {
    overflow: hidden;
}

.screenshot-nav > div {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--gs-shadow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gs-primary);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.screenshot-nav > div:hover {
    background: var(--gs-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- Contact / Blog unify ---------- */
.contact-us-section {
    padding: var(--gs-section-pad) 0;
}

.newsletter.newsletter-2,
.newsletter {
    padding: var(--gs-section-pad) 0;
}

.home-blog-card {
    border-radius: var(--gs-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-header .section-heading {
    margin-bottom: 0;
}

/* Download buttons brand polish */
.download-buttons .google-play {
    background: linear-gradient(135deg, #EF066C 0%, #FF6B9D 100%) !important;
}

.download-buttons a {
    border-radius: 999px;
}


/* ---------- Growth / Step polish ---------- */
.growth__box .content::before,
.growth__box .content::after,
.growth .row > div:nth-child(odd) .growth__box .content::before,
.growth .row > div:nth-child(even) .growth__box .content::after,
.step .growth__box .content::before,
.step .growth__box .content::after {
    display: none !important;
}

.growth__box .icon,
.step .growth__box .icon {
    width: 7.2rem !important;
    height: 7.2rem !important;
    background: linear-gradient(135deg, rgba(239, 6, 108, 0.12) 0%, #fff 100%) !important;
    filter: drop-shadow(0 12px 10px rgba(239, 6, 108, 0.12)) !important;
    -webkit-filter: drop-shadow(0 12px 10px rgba(239, 6, 108, 0.12)) !important;
    overflow: hidden;
}

.growth__box .icon i,
.step .growth__box .icon i {
    font-size: 2.8rem !important;
    color: var(--gs-primary) !important;
}

.growth .row > [class*="col-"],
.step .row > [class*="col-"] {
    display: flex;
}

.growth .row > [class*="col-"] > .growth__box,
.step .row > [class*="col-"] > .growth__box {
    width: 100%;
    height: 100%;
    align-items: stretch;
}

.growth__box .icon,
.step .growth__box .icon {
    align-self: center;
    flex-shrink: 0;
}

.growth__box .content,
.step .growth__box .content {
    flex: 1 1 auto;
    align-self: stretch;
    height: auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--gs-shadow);
    text-align: left;
}

.growth__box .content .paragraph,
.step .growth__box .content .paragraph {
    flex: 1;
}

html[dir="rtl"] .growth__box .content,
html[dir="rtl"] .step .growth__box .content {
    text-align: right;
}

.growth .button__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 4rem;
}

.growth .button__wrapper a.button {
    background: linear-gradient(135deg, #EF066C 0%, #FF6B9D 100%) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 999px;
    padding: 1.4rem 3rem;
    box-shadow: 0 10px 28px rgba(239, 6, 108, 0.28);
    filter: none !important;
}

.growth .button__wrapper a.button:hover {
    background-position: initial !important;
    transform: translateY(-2px);
    filter: none !important;
}

.step__wrapper {
    background: var(--gs-surface) !important;
}

/* ---------- FAQ open state ---------- */
.questions #accordion .card:has(.collapse.show) {
    border-color: rgba(239, 6, 108, 0.35);
    box-shadow: 0 8px 24px rgba(239, 6, 108, 0.08);
}

.questions #accordion .card:has(.collapse.show) .btn-link {
    color: var(--gs-primary) !important;
}

/* ---------- Mobile nav body lock + AR size fix ---------- */
body.nav-open {
    overflow: hidden;
    touch-action: none;
}

@media (max-width: 991.98px) {
    .header__nav-primary > li > a {
        font-size: 1.8rem !important;
        font-weight: 600 !important;
    }
}

@media (max-width: 768px) {
    .growth__box,
    .step .growth__box {
        flex-direction: column;
        align-items: stretch;
    }

    .growth__box .content,
    .step .growth__box .content {
        width: 100% !important;
        margin-top: 1.6rem !important;
        padding: 2.4rem !important;
        text-align: left !important;
    }

    html[dir="rtl"] .growth__box .content,
    html[dir="rtl"] .step .growth__box .content {
        text-align: right !important;
    }

    .video__play > button {
        left: 50% !important;
        transform: translateX(-50%);
        top: auto !important;
        bottom: 20%;
    }
}

/* ---------- Contact / Blog unify ---------- */
.contact-us-section {
    padding: var(--gs-section-pad) 0 !important;
}

.contact-form-wrapper {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--gs-radius);
}

.contact-card {
    border-radius: var(--gs-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.newsletter.newsletter-2 .newsletter__wrapper {
    border-radius: 3rem;
}

.home-blog-card {
    border-radius: var(--gs-radius) !important;
}

.blog-header {
    margin-bottom: 3rem !important;
}

html[dir="rtl"] .contact-us-section .contact-subtitle {
    text-align: right;
}

html[dir="rtl"] .blog-header {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    html[dir="rtl"] .blog-header {
        flex-direction: column;
    }
}
