:root {
    --tef-contact-primary: #ff3366;
    --tef-contact-gradient: linear-gradient(135deg, #ff3366, #ff6688);
    --tef-contact-accent: #cc0000;
    --tef-contact-dark: #111111;
    --tef-contact-text: #2d3436;
    --tef-contact-muted: #636e72;
    --tef-contact-light: #ffffff;
    --tef-contact-bg: #f9f9f9;

    --tef-contact-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --tef-contact-shadow-hover: 0 20px 40px rgba(255, 51, 102, 0.12);

    --tef-contact-radius-lg: 24px; 
    --tef-contact-radius-md: 16px;
}

.tef-contact-main-container {
    padding-top: 20px; 
}

.tef-contact-section-layout {
    display: grid;
    grid-template-columns: 4fr 7fr;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 28px;
    font-family: 'Kanit', sans-serif;
    
}

.tef-contact-hero-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-right: 20px;
}

.tef-contact-badge {
    align-self: flex-start;
    background: rgba(255, 51, 102, 0.08);
    color: var(--tef-contact-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.tef-contact-hero-panel h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--tef-contact-dark);
    margin-bottom: 16px;
}

.tef-contact-hero-panel h1 span {
    color: var(--tef-contact-primary);
}

.tef-contact-hero-panel p {
    font-size: 1.1rem;
    color: var(--tef-contact-muted);
    line-height: 1.7;
}

.tef-contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tef-contact-action-card {
    background: var(--tef-contact-light);
    border-radius: var(--tef-contact-radius-lg);
    padding: 35px;
    text-decoration: none;
    color: var(--tef-contact-text);
    box-shadow: var(--tef-contact-shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tef-contact-action-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.tef-contact-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--tef-contact-radius-md);
    background: var(--tef-contact-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--tef-contact-primary);
    transition: all 0.3s ease;
}

.tef-contact-arrow-indicator {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.15);
    transform: translate(0, 0);
    transition: all 0.3s ease;
}

.tef-contact-action-card-content {
    margin-top: 30px;
}

.tef-contact-action-card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--tef-contact-dark);
    margin-bottom: 6px;
}

.tef-contact-action-card-content p {
    font-size: 0.95rem;
    color: var(--tef-contact-muted);
}

.tef-contact-action-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--tef-contact-shadow-hover);
    border-color: rgba(255, 51, 102, 0.1);
}

.tef-contact-action-card:hover .tef-contact-arrow-indicator {
    color: var(--tef-contact-primary);
    transform: translate(5px, -5px);
}

.tef-contact-card-phone:hover .tef-contact-icon-wrapper {
    background: var(--tef-contact-gradient);
    color: var(--tef-contact-light);
}

.tef-contact-card-facebook:hover .tef-contact-icon-wrapper {
    background: #1877F2;
    color: var(--tef-contact-light);
}

.tef-contact-card-line:hover .tef-contact-icon-wrapper {
    background: #06C755;
    color: var(--tef-contact-light);
}

.tef-contact-card-email:hover .tef-contact-icon-wrapper {
    background: var(--tef-contact-dark);
    color: var(--tef-contact-light);
}

.tef-contact-notice-bar {
    grid-column: span 2;
    background: var(--tef-contact-dark);
    color: var(--tef-contact-light);
    padding: 20px 30px;
    border-radius: var(--tef-contact-radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
}

.tef-contact-notice-bar i {
    color: var(--tef-contact-primary);
    font-size: 1.2rem;
}

.tef-contact-notice-bar span {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
    .tef-contact-section-layout {
        grid-template-columns: 1fr;
        margin: 30px auto;
    }
    .tef-contact-hero-panel {
        text-align: center;
        align-items: center;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .tef-contact-hero-panel h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 600px) {
    .tef-contact-channels-grid {
        grid-template-columns: 1fr;
    }
    .tef-contact-notice-bar {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}