/* ==============================================
   CONTACT US - Blooming Words
   Premium Design System
   ============================================== */

/* ---- Container ---- */
.ct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Section Header ---- */
.ct-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.ct-section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2d465e;
    margin-bottom: 14px;
    line-height: 1.25;
}
.ct-section-header p {
    font-size: 1.08rem;
    color: #6b7c8d;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}
.ct-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #38AFC3;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid rgba(56, 175, 195, 0.3);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.ct-label i { font-size: 0.9rem; }

/* ==========================
   1. HERO SECTION
   ========================== */
.ct-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06947a 0%, #2bacc9 50%, #38AFC3 100%);
    overflow: hidden;
    text-align: center;
}
.ct-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}
.ct-hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 20px 60px;
    max-width: 750px;
}
.ct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 22px;
    border-radius: 30px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 0.5px;
}
.ct-hero-badge i {
    font-size: 1rem;
}
.ct-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.ct-hero-title span {
    background: linear-gradient(90deg, #ffd700, #ffec8b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ct-hero-subtitle {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.ct-hero-quick {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.ct-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #fff;
    color: #06947a;
}
.ct-quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    color: #06947a;
    text-decoration: none;
}
.ct-quick-btn.ct-quick-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.ct-quick-btn.ct-quick-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}
.ct-quick-btn.ct-quick-popup {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #333;
    border: none;
    animation: ctPulse 2s infinite;
}
.ct-quick-btn.ct-quick-popup:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    color: #222;
}
@keyframes ctPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,193,7,0.5); }
    50% { box-shadow: 0 0 0 10px rgba(255,193,7,0); }
}

/* ==========================
   2. INFO BAR
   ========================== */
.ct-info-bar {
    padding: 0;
    position: relative;
    z-index: 3;
    margin-top: -40px;
}
.ct-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.ct-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 24px;
    border-right: 1px solid #f0f2f5;
    transition: all 0.3s ease;
}
.ct-info-item:last-child {
    border-right: none;
}
.ct-info-item:hover {
    background: linear-gradient(135deg, rgba(56, 175, 195, 0.04), rgba(113, 203, 114, 0.04));
}
.ct-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(56, 175, 195, 0.1), rgba(113, 203, 114, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #38AFC3;
    flex-shrink: 0;
}
.ct-info-item strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #2d465e;
    margin-bottom: 2px;
}
.ct-info-item span,
.ct-info-item a {
    font-size: 0.88rem;
    color: #6b7c8d;
    text-decoration: none;
    transition: color 0.3s;
}
.ct-info-item a:hover {
    color: #38AFC3;
}

/* ==========================
   3. LOCATIONS
   ========================== */
.ct-locations {
    padding: 90px 0 70px;
    background: #f7fafa;
}
.ct-filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
}
.ct-filter-btn {
    padding: 10px 24px;
    border: 2px solid #e2e8ec;
    border-radius: 50px;
    background: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    color: #5a6a78;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ct-filter-btn:hover {
    border-color: #38AFC3;
    color: #38AFC3;
}
.ct-filter-btn.active {
    background: linear-gradient(135deg, #06947a, #38AFC3);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(56, 175, 195, 0.3);
}

/* Location Cards */
.ct-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ct-loc-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f5;
    transition: all 0.4s ease;
    position: relative;
    opacity: 1;
    transform: translateY(0);
}
.ct-loc-card.ct-hidden {
    display: none;
}
.ct-loc-card.ct-expanded {
    display: block;
}
.ct-loc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(56, 175, 195, 0.12);
    border-color: rgba(56, 175, 195, 0.25);
}
.ct-loc-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #06947a, #38AFC3);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 1;
}
.ct-loc-body {
    padding: 30px 24px 24px;
}
.ct-loc-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #2d465e;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ct-loc-body h3 i {
    color: #38AFC3;
    font-size: 1rem;
}
.ct-loc-address {
    font-size: 0.9rem;
    color: #6b7c8d;
    line-height: 1.65;
    margin-bottom: 14px;
    min-height: 48px;
}
.ct-loc-phone {
    font-size: 0.92rem;
    color: #2d465e;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ct-loc-phone i {
    color: #71CB72;
    font-size: 0.88rem;
}
.ct-loc-phone a {
    color: #2d465e;
    text-decoration: none;
    transition: color 0.3s;
}
.ct-loc-phone a:hover {
    color: #38AFC3;
}
.ct-loc-dir {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #38AFC3;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 10px;
    border: 2px solid rgba(56, 175, 195, 0.2);
    transition: all 0.3s ease;
}
.ct-loc-dir:hover {
    background: linear-gradient(135deg, #06947a, #38AFC3);
    color: #fff;
    border-color: transparent;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(56, 175, 195, 0.3);
}
.ct-loc-dir:hover i {
    color: #fff;
}

/* Read More Button */
.ct-read-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.ct-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 38px;
    border: 2px solid #38AFC3;
    border-radius: 12px;
    background: transparent;
    color: #38AFC3;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}
.ct-read-more-btn:hover {
    background: linear-gradient(135deg, #06947a, #38AFC3);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(56, 175, 195, 0.3);
    transform: translateY(-2px);
}
.ct-read-more-btn i {
    transition: transform 0.3s ease;
}
.ct-read-more-btn.ct-expanded i {
    transform: rotate(180deg);
}

/* ==========================
   4. CONTACT FORM
   ========================== */
.ct-form-section {
    padding: 90px 0;
    background: #fff;
}
.ct-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f5;
}
.ct-form-info {
    background: linear-gradient(135deg, #06947a 0%, #2bacc9 100%);
    color: #fff;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.ct-form-info::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}
.ct-form-info::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}
.ct-form-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.ct-form-info > p {
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.ct-form-contact-list {
    position: relative;
    z-index: 1;
}
.ct-form-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.ct-form-contact-item i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.ct-form-contact-item strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 2px;
}
.ct-form-contact-item a,
.ct-form-contact-item span {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}
.ct-form-contact-item a:hover {
    text-decoration: underline;
}
.ct-form-social {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 1;
}
.ct-form-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.ct-form-social a:hover {
    background: #fff;
    color: #06947a;
    transform: translateY(-3px);
}

/* Form Box */
.ct-form-box {
    padding: 50px 44px;
    background: #fff;
}
.ct-form-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d465e;
    margin-bottom: 28px;
}
.ct-success-msg {
    display: none;
    background: linear-gradient(135deg, rgba(113, 203, 114, 0.1), rgba(56, 175, 195, 0.1));
    color: #06947a;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 20px;
    border: 1px solid rgba(113, 203, 114, 0.3);
}
.ct-success-msg i {
    margin-right: 6px;
}
.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ct-form-group {
    margin-bottom: 18px;
}
.ct-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d465e;
    margin-bottom: 7px;
}
.ct-form-group input,
.ct-form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e8edf1;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #2d465e;
    transition: all 0.3s ease;
    background: #fafbfc;
}
.ct-form-group input:focus,
.ct-form-group textarea:focus {
    outline: none;
    border-color: #38AFC3;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(56, 175, 195, 0.1);
}
.ct-form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #06947a, #38AFC3);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(56, 175, 195, 0.3);
}
.ct-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(56, 175, 195, 0.4);
}

/* ==========================
   5. MAP
   ========================== */
.ct-map {
    line-height: 0;
}
.ct-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(20%);
}

/* ==========================
   RESPONSIVE
   ========================== */

/* Tablet */
@media (max-width: 992px) {
    .ct-hero-title {
        font-size: 2.5rem;
    }
    .ct-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ct-info-item {
        border-right: none;
        border-bottom: 1px solid #f0f2f5;
    }
    .ct-info-item:nth-child(odd) {
        border-right: 1px solid #f0f2f5;
    }
    .ct-info-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .ct-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ct-read-more-btn {
        padding: 12px 32px;
        font-size: 0.95rem;
    }
    .ct-form-wrapper {
        grid-template-columns: 1fr;
    }
    .ct-form-info {
        padding: 40px 30px;
    }
    .ct-form-box {
        padding: 40px 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ct-hero {
        min-height: 400px;
    }
    .ct-hero-title {
        font-size: 2rem;
    }
    .ct-hero-subtitle {
        font-size: 1rem;
    }
    .ct-section-header h2 {
        font-size: 1.8rem;
    }
    .ct-info-bar {
        margin-top: -30px;
    }
    .ct-info-grid {
        grid-template-columns: 1fr;
    }
    .ct-info-item {
        border-right: none !important;
        border-bottom: 1px solid #f0f2f5;
    }
    .ct-info-item:last-child {
        border-bottom: none;
    }
    .ct-locations-grid {
        grid-template-columns: 1fr;
    }
    .ct-filter-tabs {
        gap: 8px;
    }
    .ct-filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    .ct-read-more-btn {
        padding: 11px 28px;
        font-size: 0.9rem;
    }
    .ct-form-row {
        grid-template-columns: 1fr;
    }
    .ct-form-info {
        padding: 32px 24px;
    }
    .ct-form-box {
        padding: 32px 24px;
    }
    .ct-hero-quick {
        flex-direction: column;
        align-items: center;
    }
    .ct-quick-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .ct-hero {
        min-height: 360px;
    }
    .ct-hero-inner {
        padding: 60px 16px 40px;
    }
    .ct-hero-title {
        font-size: 1.7rem;
    }
    .ct-hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    .ct-container {
        padding: 0 16px;
    }
    .ct-locations,
    .ct-form-section {
        padding: 60px 0;
    }
    .ct-form-box h3 {
        font-size: 1.3rem;
    }
    .ct-form-info h2 {
        font-size: 1.4rem;
    }
    .ct-submit-btn {
        width: 100%;
        justify-content: center;
    }
}
