.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-20713 .elementor-element.elementor-element-f52181e{--display:flex;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-8751172 */:root {
    --gold-primary: #8A7538;
    --gold-light: #D8B25A;
    --gold-dark: #9F6E22;
    --dark-text: #1a1a1a;
    --light-text: #5a5a5a;
    --bg-light: #fafafa;
}

/* ===== SECTION HERO SLIDER ===== */
.centres-hero-section {
    background: var(--bg-light);
    padding: 3rem 2rem 4rem;
    position: relative;
    font-family: 'DM Sans', sans-serif;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
}

.slider-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 864px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: 14px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--gold-light);
    border-color: var(--gold-light);
    width: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(216, 178, 90, 0.6);
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icons a {
    color: var(--light-text);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--gold-primary);
    transform: translateY(-3px);
}

/* ===== SECTION PRÉSENTATION ===== */
.presentation-section {
    background: white;
    padding: 5rem 2rem;
    font-family: 'DM Sans', sans-serif;
}

.presentation-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.presentation-container-single {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.text-content p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.text-content strong {
    color: var(--dark-text);
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(138, 117, 56, 0.3);
}

.cta-button:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

.presentation-map {
    position: relative;
}

.map-wrapper {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.google-map-iframe {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ===== SECTION INFOS / CENTRES ===== */
.centres-list-section {
    background: var(--bg-light);
    padding: 6rem 2rem;
    font-family: 'DM Sans', sans-serif;
}

.centres-list-container {
    max-width: 1400px;
    margin: 0 auto;
}

.list-title {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.centres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.centre-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.centre-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(138, 117, 56, 0.15);
}

.centre-info {
    flex: 1;
    width: 100%;
}

.centre-icon-wrapper {
    margin-bottom: 1.5rem;
}

.centre-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.centre-icon.location {
    background: linear-gradient(135deg, #A67DB8 0%, #8B5A99 100%);
}

.centre-icon.schedule {
    background: linear-gradient(135deg, #4DD0E1 0%, #00BCD4 100%);
}

.centre-icon.phone {
    background: linear-gradient(135deg, #E8C468 0%, #D8B25A 100%);
}

.centre-name {
    font-family: 'Kanit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.centre-address {
    font-size: 1rem;
    color: var(--dark-text);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.centre-city {
    font-size: 0.9rem;
    color: var(--light-text);
}

.centre-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 117, 56, 0.3);
}

.phone-link:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.phone-link:hover span,
.phone-link:hover svg {
    color: #ffffff !important;
}

/* ===== SECTION TRANSPORTS ===== */
.transports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

@media (min-width: 1400px) {
    .transports-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .transports-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
    
    .transport-card {
        padding: 2.5rem 2rem;
    }
}

.transport-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 320px;
}

.transport-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(138, 117, 56, 0.15);
}

.transport-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.transport-icon svg {
    width: 55px;
    height: 55px;
}

.transport-icon.tram {
    background: linear-gradient(135deg, #FF6B6B 0%, #C92A2A 100%);
}

.transport-icon.bus {
    background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
}

.transport-icon.train {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
}

.transport-icon.metro {
    background: linear-gradient(135deg, #845EC2 0%, #5B3E96 100%);
}

.transport-icon.car {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
}

.transport-title {
    font-family: 'Kanit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.75rem;
    text-align: center;
    text-transform: uppercase;
}

.transport-info {
    margin-bottom: 1.25rem;
}

.transport-info:last-child {
    margin-bottom: 0;
}

.transport-info p {
    color: var(--light-text);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.35rem;
}

.transport-info strong {
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
}

.transport-info .distance {
    font-size: 0.95rem;
    color: var(--light-text);
    font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .centres-hero-section {
        padding: 0;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 2rem 2rem 3rem;
    }
    
    .slider-wrapper {
        margin-left: -2rem;
        margin-right: -2rem;
        border-radius: 0;
    }
    
    .social-icons {
        padding: 0 2rem;
    }
    
    .presentation-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .presentation-map {
        order: -1;
    }
    
    .transports-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .transports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .slider-container {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .centres-hero-section {
        padding: 0;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 1.5rem 1.5rem 2.5rem;
    }
    
    .slider-wrapper {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        border-radius: 0;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .slider-dots {
        bottom: 1.5rem;
        padding: 12px 20px;
        gap: 12px;
    }
    
    .dot {
        width: 14px;
        height: 14px;
    }
    
    .dot.active {
        width: 36px;
    }
    
    .social-icons {
        justify-content: center;
        gap: 1rem;
        padding: 0 1.5rem;
    }
    
    .presentation-section,
    .centres-list-section {
        padding: 3rem 1rem;
    }
    
    .map-wrapper {
        padding: 1rem;
    }
    
    .google-map-iframe {
        height: 350px !important;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .centres-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .centre-card {
        padding: 2rem 1.5rem;
    }
    
    .centre-actions {
        width: 100%;
        justify-content: center;
    }
    
    .transports-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .centres-hero-section {
        padding: 0;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 1rem 1rem 2rem;
    }
    
    .slider-wrapper {
        margin-left: -1rem;
        margin-right: -1rem;
        border-radius: 0;
    }
    
    .slider-container {
        height: 250px;
    }
    
    .slider-dots {
        bottom: 1rem;
        padding: 10px 16px;
        gap: 10px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }
    
    .dot.active {
        width: 32px;
    }
    
    .social-icons {
        padding: 0 1rem;
    }
    
    .google-map-iframe {
        height: 300px !important;
    }
    
    .centre-actions {
        width: 100%;
    }
    
    .phone-link {
        width: 100%;
        justify-content: center;
    }
}/* End custom CSS */