/* ============================= */
/* CONTACT HERO */
/* ============================= */

.phc-contact-hero {
    position: relative;
    padding: 120px 0 110px;
    background: url('assets/contact-hero.jpg') no-repeat right center;
    background-size: cover;
    background-color: #f7faff;
    overflow: hidden;
}

.phc-contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(247,250,255,0.95) 0%,
        rgba(247,250,255,0.85) 40%,
        rgba(247,250,255,0.6) 60%,
        rgba(247,250,255,0.0) 75%
    );
    z-index: 1;
}

.phc-contact-hero-inner {
    position: relative;
    z-index: 2;
}

.phc-contact-content {
    max-width: 640px;
}

.phc-contact-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #000; /* Black */
    margin-bottom: 25px;
}

.phc-brand {
    color: #159570; /* Brand Green */
}
.phc-contact-content h1 span {
    font-weight: 700;
}

.phc-contact-divider {
    width: 120px;
    height: 2px;
    background: #159570;
    opacity: 0.2;
    margin-bottom: 25px;
}

.phc-contact-services {
    font-size: 20px;
    color: #000;          /* Black */
    font-weight: 700;     /* Bold */
    margin-bottom: 18px;
}

.phc-contact-desc {
    font-size: 18px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 35px;
}

.phc-contact-buttons {
    display: flex;
    gap: 22px;
}

.phc-contact-btn {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.phc-contact-btn svg {
    display: block;
}

.phc-call-btn {
    background: #febe5d;
    color: #fff;
}

.phc-call-btn:hover {
    background: #f2a93c;
}

/* Yellow Call Button */
.phc-call-btn {
    background: #febe5d;
    color: #fff;
}

.phc-call-btn:hover {
    background: #f2a93c;
}

/* WhatsApp Button */
.phc-whatsapp-btn {
    background: #25D366; /* Real WhatsApp Green */
    color: #fff;
}

.phc-whatsapp-btn svg {
    display: block;
}

.phc-whatsapp-btn:hover {
    background: #409944;
}

/* Mobile */
@media (max-width: 992px) {
    .phc-contact-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .phc-contact-hero {
        padding: 90px 0 80px;
        background-position: center right;
    }

    .phc-contact-content h1 {
        font-size: 30px;
    }

    .phc-contact-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .phc-contact-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ============================= */
/* CONTACT INFO SECTION */
/* ============================= */

.phc-contact-info {
    background: #ffffff;
    padding: 80px 0;
}

.phc-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card */
.phc-info-card {
    background: #ffffff;
    padding: 26px 28px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 120px;              /* keeps all equal height */
    transition: all 0.25s ease;
}

.phc-info-card:hover {
    transform: translateY(-4px);
}

/* Icon */
.phc-info-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;             /* perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;                 /* prevents icon shrinking */
}

/* Icon Colors */
.phc-info-icon.blue { background: #2d6cdf; }
.phc-info-icon.green { background: #25D366; }
.phc-info-icon.orange { background: #f59e0b; }
.phc-info-icon.teal { background: #159570; }

.phc-info-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

/* Text */
.phc-info-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}

.phc-info-content p {
    font-size: 14px;
    margin: 2px 0;
    color: #4b5563;
    word-break: break-word;          /* prevents overflow */
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

/* Tablet */
@media (max-width: 1024px) {
    .phc-contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (2×2 clean layout without icons) */
@media (max-width: 600px) {

    .phc-contact-info {
        padding: 60px 0;
    }

    .phc-contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .phc-info-card {
        padding: 18px;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    /* REMOVE ICONS ON MOBILE */
    .phc-info-icon {
        display: none;
    }

    .phc-info-content h4 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .phc-info-content p {
        font-size: 12px;
        margin: 2px 0;
        word-break: break-word;
    }
}

/* Hide mobile inline icon on desktop */
.phc-mobile-icon {
    display: none;
}

/* Mobile adjustments */
@media (max-width: 600px) {

    .phc-info-icon {
        display: none; /* hide big circle */
    }

    .phc-mobile-icon {
        display: inline-flex;
        align-items: center;
        margin-right: 6px;
        color: #159570;
    }

    .phc-mobile-icon svg {
        width: 14px;
        height: 14px;
    }

    .phc-mobile-title {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 700;
        gap: 4px;
    }

    .phc-info-card {
        padding: 16px;
        text-align: center;
    }

    .phc-info-content p {
        font-size: 12px;
        word-break: break-word;
    }
}


/* ============================= */
/* OUR LOCATIONS SECTION */
/* ============================= */

.phc-locations {
    background: #f5f7fb;
    padding: 60px 0;
}

.phc-locations-header {
    text-align: center;
    margin-bottom: 50px;
}

.phc-locations-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.phc-divider {
    width: 80px;
    height: 2px;
    background: #d8dde6;
    margin: 0 auto;
}

/* Grid */
.phc-locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/* Card */
.phc-location-card {
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.phc-location-card h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Tags */
.phc-location-tags {
    margin-bottom: 18px;
}

.phc-location-tags .tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    margin-right: 6px;
    color: #fff;
}

/* Tag Colors */
.tag.retail { background: #f59e0b; }
.tag.wholesale { background: #159570; }
.tag.clinic { background: #dc2626; }
.tag.lab { background: #2563eb; }

/* List */
.phc-location-card ul {
    padding-left: 18px;
    margin: 0;
}

.phc-location-card ul li {
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .phc-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .phc-locations-grid {
        grid-template-columns: 1fr;
    }

    .phc-location-card {
        padding: 25px;
    }
}


/* ============================= */
/* FIND US SECTION */
/* ============================= */

.phc-find {
    background: #f5f7fb;
    padding: 60px 0;
}

.phc-find-header {
    text-align: center;
    margin-bottom: 50px;
}

.phc-find-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.phc-find-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.phc-map-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.phc-map-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #374151;
    text-align: center;
}

.phc-map-card iframe {
    width: 100%;
    height: 260px;
    border: none;
    border-radius: 10px;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .phc-find-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .phc-find-grid {
        grid-template-columns: 1fr;
    }

    .phc-map-card iframe {
        height: 220px;
    }
}


/* ============================= */
/* SOCIAL FOOTER */
/* ============================= */

.phc-social-footer {
    background: #f5f7fb;
    padding: 60px 0 70px;
    text-align: center;
}

.phc-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;            /* Increased */
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Instagram Gradient Icon */
.phc-insta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at 30% 30%, 
        #feda75, 
        #fa7e1e, 
        #d62976, 
        #962fbf, 
        #4f5bd5);
    border-radius: 8px;
    padding: 5px;
}

.phc-insta-icon svg {
    width: 16px;
    height: 16px;
    color: #ffffff;
}

.phc-insta-text {
    color: #159570;   /* Your brand green */
}

.phc-instagram-link:hover {
    transform: translateY(-2px);
}

.phc-social-divider {
    width: 100%;
    height: 1px;
    background: #e5e9f2;
    margin: 30px 0 25px;
}

.phc-tagline {
    font-size: 16px;
    color: #6b7280;
    font-style: italic;
    margin: 0;
}

/* Mobile */
@media (max-width: 600px) {
    .phc-instagram-link {
        font-size: 16px;
    }
}