/* =============================================
   DAILY WELL CHECK MEDICAL LABORATORY
   Complete Stylesheet - Index + Services + Contact
   ============================================= */

:root {
    --teal: #1e3a5f;
    --teal-dark: #0f1f33;
    --teal-light: #0f1f33;
    --yellow: #ffe600;
    --gray: #767676;
    --gray-light: #c8dde2;
    --white: #ffffff;
    --dark: 	#0f1f33;
    --card-bg: #f8fafa;
    --border-light: rgb(58, 85, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn-primary {
    display: inline-block;
    background: var(--yellow);
    color: var(--teal-dark);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,230,0,0.3);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-emergency {
    display: inline-block;
    background: var(--teal-dark);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-emergency:hover {
    background: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(88,129,129,0.3);
}

.btn-emergency-large {
    display: inline-block;
    background: var(--yellow);
    color: var(--teal-dark);
    padding: 18px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-emergency-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,230,0,0.35);
}

/* =============================================
   HEADER
   ============================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.top-bar {
    background: var(--teal-dark);
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.top-info {
    color: var(--gray-light);
    font-size: 0.8rem;
    font-weight: 500;
}

.top-badge {
    background: var(--yellow);
    color: var(--teal-dark);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.nav-bar {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-nav a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--teal-dark);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--teal);
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   PAGE HEADER (Services & Contact)
   ============================================= */

.page-header {
    background: linear-gradient(135deg, var(--teal-dark) 0%, #1a3636 50%, var(--dark) 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' fill='none' stroke='%23588181' stroke-width='0.3' opacity='0.15'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-tag {
    display: inline-block;
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 500px;
    margin: 0 auto;
}

/* =============================================
   HERO (Index)
   ============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 180px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--teal-dark) 0%, #1a3636 50%, var(--dark) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' fill='none' stroke='%23588181' stroke-width='0.3' opacity='0.15'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(88,129,129,0.15) 0%, transparent 70%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--gray-light);
    margin-bottom: 32px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-light);
    font-weight: 500;
}

/* =============================================
   SECTIONS COMMON
   ============================================= */

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    color: var(--teal);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--teal-dark);
    line-height: 1.3;
}

.section-header.light h2 {
    color: var(--white);
}

/* =============================================
   WELCOME / ABOUT (Index)
   ============================================= */

.welcome {
    background: var(--white);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.lead {
    font-size: 1.25rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.welcome-text p {
    margin-bottom: 16px;
    color: var(--gray);
}

.welcome-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.highlight {
    text-align: center;
    padding: 24px;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-color: rgba(88,129,129,0.2);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.highlight h4 {
    font-size: 1rem;
    color: var(--teal-dark);
    margin-bottom: 8px;
}

.highlight p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

.welcome-visual {
    position: relative;
}

.image-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-card.main {
    height: 320px;
}

.image-card.secondary {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 140px;
    border: 4px solid var(--white);
}

/* =============================================
   SERVICES (Index Grid)
   ============================================= */

.services {
    background: linear-gradient(180deg, var(--teal-dark) 0%, #1a3636 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,230,0,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(37,76,76,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.3s;
}

.service-overlay a:hover {
    transform: translateX(5px);
}

.service-info {
    padding: 24px;
}

.service-info h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-info p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =============================================
   WHY CHOOSE US (Index)
   ============================================= */

.why-us {
    background: var(--card-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(88,129,129,0.08);
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: rgba(88,129,129,0.15);
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-card h3 {
    font-size: 1.1rem;
    color: var(--teal-dark);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* =============================================
   EMERGENCY (Index)
   ============================================= */

.emergency {
    background: var(--white);
    padding: 60px 0;
}

.emergency-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
    border: 2px solid var(--yellow);
    border-radius: 20px;
    padding: 48px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.emergency-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--teal-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.emergency-content h2 {
    font-size: 1.8rem;
    color: var(--teal-dark);
    margin-bottom: 16px;
}

.emergency-content p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.emergency-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
}

.pulse-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 0.6s;
}

.pulse-ring.delay-2 {
    animation-delay: 1.2s;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.emergency-icon {
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

/* =============================================
   CONTACT (Index Section)
   ============================================= */

.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background: var(--card-bg);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.info-card:hover {
    border-color: rgba(88,129,129,0.2);
    transform: translateY(-3px);
}

.info-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.info-card h4 {
    font-size: 1rem;
    color: var(--teal-dark);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact-form-wrap {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-light);
}

.contact-form h3 {
    font-size: 1.3rem;
    color: var(--teal-dark);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(88,129,129,0.15);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray);
    background: var(--white);
    margin-bottom: 16px;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255,230,0,0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background: var(--teal-dark);
    color: var(--gray-light);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-main {
    color: var(--white);
}

.footer-brand .logo-sub {
    color: var(--gray-light);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-light);
    opacity: 0.7;
}

/* =============================================
   SERVICES PAGE - DETAIL CARDS
   ============================================= */

.services-detail {
    background: var(--white);
    padding: 80px 0;
}

.service-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-light);
}

.service-detail-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse > * {
    direction: ltr;
}

.service-detail-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    height: 380px;
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.service-detail-img:hover img {
    transform: scale(1.05);
}

.service-detail-content {
    position: relative;
}

.service-num {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(88,129,129,0.08);
    line-height: 1;
    margin-bottom: 8px;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    color: var(--teal-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.service-intro {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 28px;
}

.service-tests h4 {
    font-size: 0.9rem;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    font-weight: 700;
}

.service-tests ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-tests li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(88,129,129,0.06);
}

.service-tests li:last-child {
    border-bottom: none;
}

.check {
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
}

.service-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 28px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.meta-value {
    font-size: 0.9rem;
    color: var(--teal-dark);
    font-weight: 700;
}

/* =============================================
   SERVICES PAGE - PROCESS
   ============================================= */

.process {
    background: linear-gradient(180deg, var(--card-bg) 0%, var(--white) 100%);
    padding: 80px 0;
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-light);
    max-width: 240px;
    flex: 1;
    min-width: 200px;
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: rgba(88,129,129,0.2);
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--yellow);
    color: var(--teal-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.process-step h3 {
    font-size: 1.1rem;
    color: var(--teal-dark);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.process-arrow {
    font-size: 2rem;
    color: var(--teal-light);
    font-weight: 300;
    flex-shrink: 0;
}

/* =============================================
   SERVICES PAGE - CTA
   ============================================= */

.cta-section {
    background: var(--white);
    padding: 60px 0 100px;
}

.cta-box {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-box p {
    color: var(--gray-light);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* =============================================
   CONTACT PAGE - INFO CARDS
   ============================================= */

.contact-info-section {
    background: var(--white);
    padding: 60px 0 40px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-info-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(88,129,129,0.2);
}

.info-icon-large {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    color: var(--teal-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.info-link {
    color: var(--teal);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.info-link:hover {
    color: var(--teal-dark);
}

.info-note {
    display: inline-block;
    background: var(--card-bg);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--teal);
    font-weight: 600;
}

/* =============================================
   CONTACT PAGE - EMERGENCY BANNER
   ============================================= */

.emergency-banner {
    background: var(--white);
    padding: 40px 0 60px;
}

.emergency-banner-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
    border: 2px solid var(--yellow);
    border-radius: 20px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.emergency-banner-content {
    flex: 1;
    min-width: 300px;
}

.emergency-label {
    display: inline-block;
    background: var(--yellow);
    color: var(--teal-dark);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.emergency-banner-content h2 {
    font-size: 1.6rem;
    color: var(--teal-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.emergency-banner-content p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* =============================================
   CONTACT PAGE - MAIN FORM
   ============================================= */

.contact-main {
    background: var(--card-bg);
    padding: 80px 0;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 1.6rem;
    color: var(--teal-dark);
    margin: 8px 0 8px;
    font-weight: 700;
}

.form-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-form-large .form-group {
    margin-bottom: 20px;
}

.contact-form-large label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 8px;
}

.contact-form-large input,
.contact-form-large select,
.contact-form-large textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(88,129,129,0.15);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray);
    background: var(--white);
    transition: all 0.3s;
}

.contact-form-large input:focus,
.contact-form-large select:focus,
.contact-form-large textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255,230,0,0.15);
}

.form-row-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.radio-group {
    display: flex;
    gap: 24px;
    padding: 4px 0;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 500;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--teal);
    margin: 0;
}

.form-note {
    font-size: 0.8rem;
    color: var(--gray);
    text-align: center;
    margin-top: 16px;
    margin-bottom: 0;
}

/* Side Panel */
.contact-side-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.side-card:hover {
    border-color: rgba(88,129,129,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.side-card.highlight {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
    color: var(--white);
    border: none;
}

.side-card.highlight h4 {
    color: var(--white);
}

.side-card.highlight p {
    color: var(--gray-light);
}

.side-card.highlight .info-link {
    color: var(--yellow);
}

.side-card h4 {
    font-size: 1rem;
    color: var(--teal-dark);
    margin-bottom: 14px;
    font-weight: 700;
}

.side-card ul {
    list-style: none;
}

.side-card li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--gray);
    border-bottom: 1px solid rgba(88,129,129,0.06);
}

.side-card li:last-child {
    border-bottom: none;
}

.side-card li strong {
    color: var(--teal-dark);
}

.side-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* =============================================
   CONTACT PAGE - MAP
   ============================================= */

.map-section {
    background: var(--white);
    padding: 60px 0 80px;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
}

.map-pin {
    background: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pin-icon {
    font-size: 1.5rem;
}

.pin-text {
    display: flex;
    flex-direction: column;
}

.pin-text strong {
    color: var(--teal-dark);
    font-size: 0.95rem;
}

.pin-text span {
    color: var(--gray);
    font-size: 0.8rem;
}

/* =============================================
   CONTACT PAGE - FAQ
   ============================================= */

.faq-section {
    background: var(--card-bg);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(88,129,129,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.faq-item h4 {
    font-size: 1.05rem;
    color: var(--teal-dark);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-visual {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .image-card.secondary {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        order: 1;
    }

    .emergency-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .emergency-visual {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Services page */
    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }

    .service-detail-card.reverse > * {
        direction: ltr;
    }

    .service-detail-img {
        height: 300px;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .service-meta {
        grid-template-columns: 1fr;
    }

    .process-grid {
        flex-direction: column;
        gap: 16px;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .process-step {
        max-width: 100%;
        width: 100%;
    }

    /* Contact page */
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-side-panel {
        order: -1;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .emergency-banner-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        gap: 12px;
    }

    .top-info {
        font-size: 0.7rem;
    }

    .main-nav {
        position: fixed;
        top: 130px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 24px;
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero,
    .page-header {
        padding: 160px 0 60px;
        min-height: auto;
    }

    .hero-content h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-num {
        font-size: 1.6rem;
    }

    section {
        padding: 60px 0;
    }

    .welcome-highlights {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .form-row,
    .form-row-large {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    /* Services page mobile */
    .service-detail-img {
        height: 240px;
    }

    .service-num {
        font-size: 3.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.4rem;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .cta-box h2 {
        font-size: 1.4rem;
    }

    /* Contact page mobile */
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .radio-group {
        flex-direction: column;
        gap: 12px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .map-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
    }

    .map-pin {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1,
    .page-header h1 {
        font-size: 1.6rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-num {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .emergency-box {
        padding: 28px;
    }

    .emergency-content h2 {
        font-size: 1.3rem;
    }

    .btn-emergency {
        font-size: 0.9rem;
        padding: 14px 24px;
    }

    .contact-form-wrap,
    .contact-form-wrapper {
        padding: 24px;
    }

    .service-detail-card {
        padding-bottom: 50px;
        gap: 30px;
    }

    .service-detail-img {
        height: 200px;
    }

    .service-num {
        font-size: 2.5rem;
    }

    .process-step {
        padding: 28px 20px;
    }

    .faq-item {
        padding: 24px;
    }
}