/*  462phikeleniplumbers - Enhanced Contact Styles */
:root {
    --navy: #0a2540;
    --navy-light: #143d5e;
    --navy-dark: #061a2e;
    --royal: #1e6fdb;
    --royal-light: #4a9eff;
    --royal-glow: rgba(30, 111, 219, 0.15);
    --white: #ffffff;
    --off-white: #f8fafc;
    --grey: #64748b;
    --grey-light: #94a3b8;
    --grey-dark: #334155;
    --orange: #f97316;
    --orange-light: #fb923c;
    --orange-glow: rgba(249, 115, 22, 0.15);
    --black: #0f172a;
    --silver: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius: 16px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--grey-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xs);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before { left: 100%; }

.btn-primary {
    background: var(--royal);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(30, 111, 219, 0.4);
}

.btn-primary:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-full { width: 100%; }

.btn-text {
    background: none;
    color: var(--grey);
    padding: 8px 16px;
}

.btn-text:hover { color: var(--royal); }

/* Navigation */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: var(--navy);
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--royal);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(30, 111, 219, 0.3);
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
}

.logo-main{
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0;  /* remove letter-spacing */
}

.logo-sub {
    font-size: 20px;     /* same size as main */
    font-weight: 800;    /* same weight */
    color: var(--royal-light);
    letter-spacing: 0;   /* remove letter-spacing */
    text-transform: none; /* remove uppercase */
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: var(--radius-xs);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-links a.nav-cta {
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.nav-links a.nav-cta:hover {
    background: var(--orange-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Page Header */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--royal) 100%);
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="90" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
}

.page-header-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(10,37,64,0.3), rgba(10,37,64,0.8));
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Cards */
.contact-info-section {
    padding: 48px 0;
    background: var(--off-white);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.contact-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid var(--silver);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.contact-card.highlight {
    border: 2px solid #25d366;
    background: linear-gradient(to bottom, var(--white), rgba(37, 211, 102, 0.03));
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--royal), var(--royal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(30, 111, 219, 0.3);
}

.contact-card.highlight .contact-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.contact-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 15px;
    color: var(--grey-dark);
    font-weight: 600;
}

.contact-note {
    font-size: 12px !important;
    color: var(--grey) !important;
    font-weight: 400 !important;
    margin-top: 4px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--royal);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 12px;
    transition: var(--transition);
}

.contact-link:hover {
    gap: 10px;
    color: var(--navy);
}

/* Working Hours */
.working-hours-section {
    padding: 80px 0;
    background: var(--white);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    color: var(--royal);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
}

.section-tag::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--royal);
    margin: 8px 0 0;
    border-radius: 2px;
}

.hours-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.hours-content > p {
    color: var(--grey);
    font-size: 17px;
    margin-bottom: 32px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.hours-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--off-white);
    border-radius: var(--radius-xs);
    border-left: 4px solid var(--silver);
    transition: var(--transition);
}

.hours-item:hover {
    transform: translateX(4px);
    border-left-color: var(--royal);
}

.hours-item .day {
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
}

.hours-item .time {
    color: var(--grey);
    font-size: 14px;
}

.hours-item .status {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.status.open {
    background: rgba(37, 211, 102, 0.1);
    color: #16a34a;
}

.status.closed {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.status.emergency {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
}

.hours-item.emergency-hours {
    border-left-color: var(--orange);
    background: linear-gradient(to right, rgba(249, 115, 22, 0.05), var(--off-white));
}

.emergency-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    padding: 20px 24px;
    border-radius: var(--radius);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.emergency-banner i {
    font-size: 28px;
    flex-shrink: 0;
}

.emergency-banner strong {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
}

.emergency-banner span {
    font-size: 14px;
    opacity: 0.9;
}

.emergency-banner a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 700;
}

.hours-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}

/* Map & Form */
.map-form-section {
    padding: 80px 0;
    background: var(--off-white);
}

.map-form-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.map-container h3,
.contact-form-container h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-container h3 i,
.contact-form-container h3 i { color: var(--royal); }

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.service-areas h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.area-tag {
    background: var(--white);
    border: 1px solid var(--silver);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--grey-dark);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.area-tag:hover {
    background: var(--royal);
    color: var(--white);
    border-color: var(--royal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 111, 219, 0.3);
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.form-control {
    padding: 12px 14px;
    border: 1px solid var(--silver);
    border-radius: var(--radius-xs);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--royal);
    box-shadow: 0 0 0 3px var(--royal-glow);
}

.form-control::placeholder { color: var(--grey-light); }

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--grey);
    font-size: 17px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--off-white);
    border-radius: var(--radius-xs);
    overflow: hidden;
    border: 1px solid var(--silver);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--royal-light);
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
    transition: var(--transition);
}

.faq-question:hover { color: var(--royal); }

.faq-question i {
    color: var(--royal);
    transition: var(--transition);
    font-size: 14px;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--grey);
    font-size: 15px;
    line-height: 1.7;
}

/* Social Connect */
.social-connect {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-connect::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 100px 100px;
}

.social-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.social-connect h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.social-connect p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    margin-bottom: 32px;
}

.social-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-xs);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.social-btn.facebook { background: #1877f2; }
.social-btn.tiktok { background: #000000; border: 1px solid rgba(255,255,255,0.2); }
.social-btn.whatsapp { background: #25d366; }
.social-btn.linkedin { background: #0a66c2; }

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Footer */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--royal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 111, 219, 0.3);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul { list-style: none; }

.footer-links li,
.footer-contact li { margin-bottom: 12px; }

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--royal-light); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.footer-contact i { color: var(--royal); width: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-cards { grid-template-columns: repeat(2, 1fr); }
    .hours-grid { grid-template-columns: 1fr; gap: 40px; }
    .hours-image img { height: 350px; }
    .map-form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .contact-cards { grid-template-columns: 1fr; margin-top: -30px; }
    .form-row { grid-template-columns: 1fr; }
    .social-buttons { flex-direction: column; }
    .social-btn { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Logo Image Styles - replaces the icon while keeping text */
.logo-img-nav {
    height: 44px;
    width: auto;
    max-width: 120px;
    display: block;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo-img-nav:hover {
    transform: scale(1.05);
}

.logo-img-footer {
    height: 40px;
    width: auto;
    max-width: 100px;
    display: block;
    object-fit: contain;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.logo-img-footer:hover {
    transform: scale(1.05);
}

/* Responsive logo */
@media (max-width: 768px) {
    .logo-img-nav {
        height: 36px;
    }
    .logo-img-footer {
        height: 32px;
    }
}
