.site-main {
    min-height: calc(100vh - 200px);
    padding-top: 0;
}
.section-padding {
    padding: 6rem 0;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #fff;
}
.section-subtitle.text-left {
    text-align: left;
}
.text-left {
    text-align: left;
}

/* Problems Section Modern */
.problems-section {
    padding-top: 2rem;
    padding-bottom: 6rem;
}
.problems-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
.problem-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}
.problem-card:hover {
    background: rgba(25, 25, 25, 0.8);
    border-color: var(--primary);
}
.problem-icon svg {
    width: 28px;
    height: 28px;
}
.problem-icon.icon-red {
    color: #ff4d4d;
}
.problem-icon.icon-yellow {
    color: #ffb800;
}
.problem-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Features & Reviews Section */
/* Services Section matching image */
.services-section {
    background-color: #fcf8f2;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255, 184, 0, 0.04) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(255, 145, 0, 0.04) 0%, transparent 35%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffb800' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    padding: 3.5rem 0;
    color: #000;
}
.services-section .section-title {
    color: #000;
}
.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 120%, rgba(255, 184, 0, 0.1), transparent 70%);
    pointer-events: none;
}
.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}
.service-card-white {
    background: #ffffff;
    padding: 2rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-card-white:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #fff8e6;
    color: #ffb800;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.service-card-title {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000;
}
.service-card-desc {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
}
.service-card-desc span {
    font-weight: 700;
    display: block;
    margin-top: 0.5rem;
}

@media (max-width: 992px) {
    .services-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .services-grid-3 {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .service-card-white {
        padding: 1.25rem;
        border-radius: 15px;
    }
    .services-section .section-title {
        text-align: center !important;
        font-size: 1.8rem;
    }
    .service-card-title {
        font-size: 1.2rem;
        text-align: center;
    }
    .service-card-desc {
        font-size: 0.95rem;
        text-align: center;
    }
    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Hero */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background-color: #000;
    min-height: 80vh;
}
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
}
.hero-content {
    max-width: 700px;
    text-align: left;
}
.hero-title {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
}
.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffb800;
    color: #000;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: none; /* Removed transition to avoid hover lag */
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}
.btn-hero .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    padding: 4px;
    border-radius: 4px;
}

/* Page Grids */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.join-section {
    background: radial-gradient(circle at 20% 80%, rgba(255, 184, 0, 0.1) 0%, transparent 50%);
}
.join-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.join-submit {
    grid-column: span 2;
    margin-top: 1rem;
}

/* Section Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        background-position: center;
    }
    .hero-container {
        padding: 0 2rem;
    }
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    .problems-grid, .features-grid, .join-form {
        grid-template-columns: 1fr;
    }
    .problems-grid-modern {
        grid-template-columns: 1fr;
    }
    .problem-card {
        padding: 1rem;
    }
    .problem-text {
        font-size: 1rem;
    }
    .join-submit {
        grid-column: span 1;
    }
}

/* Registration Section */
.registration-section {
    background: #000;
    padding-bottom: 8rem;
    position: relative;
    overflow: hidden;
}
.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 184, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.container-boxed {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}
.reg-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
    text-align: center;
}
.registration-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
    margin-bottom: 2rem;
}
.form-group input {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1rem;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}
.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}
.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.btn-full {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: none;
    border-radius: 12px;
}
#form-response {
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
}
#form-response.success { color: #25D366; }
#form-response.error { color: #ff4d4d; }
.error-message {
    display: block;
    color: #ff6b6b;
    font-size: 0.75rem;
    margin-top: 0.2rem;
    min-height: 0.9rem;
    font-weight: 500;
}
.input-error {
    border-color: #ff6b6b !important;
}
.input-error::placeholder {
    color: rgba(255, 107, 107, 0.5);
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    .registration-form {
        padding: 1.5rem 1.25rem;
        border-radius: 15px;
    }
    .reg-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    .registration-section {
        padding: 3rem 0;
    }
    .btn-full {
        padding: 1rem;
        font-size: 1.1rem;
    }
    .form-group input {
        padding: 0.8rem 0.75rem;
        font-size: 1rem;
    }
}

.thank-you-message {
    text-align: center;
    padding: 2rem 0;
    animation: fadeIn 0.5s ease-out;
}
.thank-you-icon {
    width: 64px;
    height: 64px;
    color: #25D366;
    margin: 0 auto 1.5rem;
}
.thank-you-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}
.thank-you-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Shipping Section */
.shipping-section {
    padding: 6rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.shipping-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.shipping-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.shipping-content {
    flex: 1;
    max-width: 600px;
}

.shipping-header {
    margin-bottom: 2rem;
}

.shipping-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-align: left;
}

.shipping-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    text-align: left;
}

.search-box {
    margin-bottom: 2rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: #ffb800;
}

#citySearch {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
}

#citySearch:focus {
    outline: none;
    border-color: #ffb800;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.1);
}

.cities-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cities-table-header {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    font-weight: 700;
    color: #ffb800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.cities-list {
    max-height: 400px;
    overflow-y: auto;
}

.cities-list::-webkit-scrollbar {
    width: 6px;
}

.cities-list::-webkit-scrollbar-track {
    background: transparent;
}

.cities-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.city-row {
    display: flex;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s ease;
    align-items: center;
}

.city-row:last-child {
    border-bottom: none;
}

.city-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.col-ville { flex: 2; color: #fff; font-weight: 600; text-align: left;}
.col-livre { flex: 1; color: rgba(255, 255, 255, 0.8); font-weight: 500; text-align: right; }
.col-retour { flex: 1; color: rgba(255, 255, 255, 0.5); font-weight: 400; text-align: right; }

.shipping-info-footer {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.shipping-info-footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.shipping-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shipping-img {
    height: auto;
}

@keyframes float_shipping {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive Shipping */
@media (max-width: 1024px) {
    .shipping-flex {
        flex-direction: column;
        gap: 3rem;
    }
    .shipping-content {
        max-width: 100%;
        order: 2;
    }
    .shipping-image-container {
        order: 1;
    }
    .shipping-title {
        font-size: 2.2rem;
        text-align: center;
    }
    .shipping-subtitle {
        text-align: center;
    }
    .col-ville { text-align: left; }
}

@media (max-width: 768px) {
    .shipping-section {
        padding: 4rem 0;
    }
    .shipping-title {
        font-size: 1.8rem;
    }
    #citySearch {
        padding: 0.75rem 1rem 0.75rem 2.5rem !important;
        font-size: 0.95rem !important;
    }
    .cities-table-header {
        padding: 0.8rem 1rem;
        font-size: 0.75rem;
    }
    .city-row {
        padding: 0.8rem 1rem;
    }
    .col-ville { font-size: 0.95rem; }
    .col-livre, .col-retour { font-size: 0.85rem; }
    
    .shipping-info-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        text-align: center;
    }
}
