/* ======================================
   CONTACT DETAILS SECTION
====================================== */
.dr1019contactdetails {
	padding: 90px 20px;
	background: radial-gradient(circle at top, rgba(20, 184, 166, .18),
		transparent 60%), linear-gradient(180deg, #ecfeff, #f0fdfa);
	font-family: 'Montserrat', sans-serif;
}

/* Container */
.creative-contact-section {
	max-width: 1200px;
	margin: auto;
}

/* Flex layout */
.creative-contact-flex {
	display: flex;
	justify-content: center;
}

/* Branch grid */
.creative-contact-branches {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 26px;
	width: 100%;
}

/* ======================================
   BRANCH CARD
====================================== */
.creative-contact-info {
	background: #ffffff;
	padding: 26px 24px 28px;
	border-radius: 20px;
	position: relative;
	box-shadow: 0 18px 50px rgba(15, 118, 110, .18), inset 0 1px 0
		rgba(255, 255, 255, .7);
	transition: transform .35s ease, box-shadow .35s ease;
	overflow: hidden;
}

/* Soft medical glow edge */
.creative-contact-info::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: 22px;
	background: linear-gradient(120deg, transparent, #14b8a6, #99f6e4, transparent);
	opacity: .45;
	filter: blur(14px);
	z-index: -1;
}

/* Hover */
.creative-contact-info:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 80px rgba(15, 118, 110, .28);
}

/* ======================================
   TEXT STYLES
====================================== */
.creative-contact-info h3 {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 14px;
	color: #0f766e;
}

.creative-contact-info p {
	font-size: 14px;
	line-height: 1.7;
	color: #334155;
	margin-bottom: 10px;
}

.creative-contact-info strong {
	color: #0f172a;
}

/* Links */
.creative-contact-info a {
	color: #0f766e;
	font-weight: 600;
	text-decoration: none;
	transition: color .25s ease;
}

.creative-contact-info a:hover {
	color: #14b8a6;
}

/* ======================================
   VIEW MAP BUTTON
====================================== */
.creative-contact-info a[target="_blank"] {
	display: inline-block;
	margin-top: 14px;
	padding: 10px 16px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	background: linear-gradient(135deg, #0f766e, #14b8a6);
	color: #ffffff;
	box-shadow: 0 10px 30px rgba(20, 184, 166, .35);
	transition: transform .25s ease, box-shadow .25s ease;
}

.creative-contact-info a[target="_blank"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 45px rgba(20, 184, 166, .55);
}

/* ======================================
   MOBILE
====================================== */
@media ( max-width : 768px) {
	.dr1019contactdetails {
		padding: 70px 16px;
	}
}