@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary: #2563eb;
    --primary-light: #60a5fa;
    --primary-dark: #1d4ed8;
    --secondary: #f1f5f9;
    --background: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    --card-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --hover-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.phone-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
    background: var(--text-main);
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('sink-hero.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-main);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.info-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.info-card p, .info-card ul {
    color: var(--text-muted);
}

.info-card ul {
    list-style-position: inside;
    margin-top: 0.5rem;
}

.info-card li {
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
    padding: 4rem 2rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 4rem;
}

.faq-item {
    border-bottom: 1px solid var(--secondary);
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
}

.faq-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    margin-top: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: var(--white);
    color: var(--text-main);
    font-weight: 600;
    box-shadow: var(--card-shadow);
    transition: all 0.2s;
}

.page-link:hover {
    background: var(--secondary);
    color: var(--primary);
}

.page-link.active {
    background: var(--primary);
    color: var(--white);
}

/* Footer */
footer {
    background: var(--text-main);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}

/* Main Phone Banner */
.main-phone-banner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.banner-link-phone {
    background: linear-gradient(135deg, #ef4444, #b91c1c); /* Eye-catching red gradient */
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    padding: 1.5rem;
    border-radius: 1rem;
    font-size: 1.85rem;
    font-weight: 800; /* Extra bold */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.3), 0 2px 4px -2px rgba(220, 38, 38, 0.3);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 20px rgba(220, 38, 38, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.banner-link-phone:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.6), 0 8px 10px -6px rgba(220, 38, 38, 0.5);
    animation: none; /* Pause animation on hover */
}

.banner-link-phone i {
    color: #fde047; /* Yellow icon for high contrast and attention */
}

.banner-link-online {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2), 0 2px 4px -2px rgba(16, 185, 129, 0.2);
}

.banner-link-online:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4), 0 8px 10px -6px rgba(16, 185, 129, 0.4);
}

.info-banner-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    margin-top: 1.5rem;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .banner-link-phone, .banner-link-online {
        font-size: 1.25rem;
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Form Styles for Inquiry Page */
.form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group .required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.privacy-policy {
    background: var(--secondary);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.privacy-policy h4 {
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.privacy-content {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Category Buttons */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.category-btn {
    cursor: pointer;
    position: relative;
    display: block;
}

.category-btn input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.category-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.5rem;
    background-color: var(--secondary);
    color: var(--text-main);
    border-radius: 0.5rem;
    border: 2px solid transparent;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    font-size: 0.95rem;
    height: 100%;
}

.category-btn input[type="radio"]:checked + span {
    background-color: #eff6ff;
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.category-btn:hover span {
    background-color: #e2e8f0;
}

@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
    }
}

/* Local Results Section */
.local-results-section {
    margin-top: 4rem;
}

.company-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted for smaller mobile screens */
    gap: 1.5rem;
}

.company-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    border-color: #cbd5e1;
}

.company-card:hover::before {
    transform: scaleX(1);
}

.company-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.company-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
}

.company-title b {
    color: var(--primary);
    background: #eff6ff;
    padding: 0 0.25rem;
    border-radius: 0.25rem;
}

.company-address {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.company-strength {
    font-size: 0.9rem;
    color: #0f766e;
    background: #ccfbf1;
    padding: 0.6rem 0.8rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.company-strength i {
    color: #0d9488;
}

.company-map-btn {
    background: #f8fafc;
    color: var(--text-main);
    border: 1px solid #cbd5e1;
    padding: 0.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    transition: all 0.2s;
}

.company-map-btn:hover {
    background: #03c75a;
    color: var(--white);
    border-color: #03c75a;
}

@media (max-width: 768px) {
    .company-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .company-map-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Restaurant Card Design */
.restaurant-card {
    background: linear-gradient(to bottom right, #ffffff, #fff1f2);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(244, 63, 94, 0.1), 0 4px 6px -2px rgba(244, 63, 94, 0.05);
    border: 1px solid #ffe4e6;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restaurant-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(244, 63, 94, 0.15), 0 10px 10px -5px rgba(244, 63, 94, 0.04);
}

.rest-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rest-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.rest-address {
    font-size: 0.95rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rest-category {
    align-self: flex-start;
    font-size: 0.85rem;
    color: #be123c;
    background: #ffe4e6;
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.rest-map-btn {
    background: #f43f5e;
    color: var(--white);
    padding: 0.8rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(244, 63, 94, 0.3);
}

.rest-map-btn:hover {
    background: #e11d48;
    color: var(--white);
    box-shadow: 0 6px 10px -1px rgba(244, 63, 94, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hero { padding: 4rem 1rem; }
    .hero h1 { font-size: 1.75rem; }
    .hero p { font-size: 1rem; }
    header { padding: 1rem; flex-direction: column; gap: 1rem; text-align: center; }
    
    .company-card, .restaurant-card {
        padding: 1.5rem;
    }
    
    .rest-title { font-size: 1.2rem; }
    .company-title { font-size: 1.15rem; }
    
    .rest-category, .company-strength {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
}
