/* Contact Page Specific Styles */

/* Header with Logo */
.page-header {
    background: white;
    padding: 20px 0;
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.company-logo {
    width: 80px;
    height: 80px;
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.company-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.company-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 5px 0 0 0;
}

/* Navigation Tabs */
.contact-nav {
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-tabs {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    padding: 0 20px;
}

.nav-tab {
    padding: 18px 25px;
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 15px;
}

.nav-tab:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.nav-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-hero .subtitle {
    font-size: 18px;
    opacity: 0.95;
}

/* Service Tiers Section */
.service-tiers {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.service-tiers h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.tier-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tier-card.featured {
    border: 3px solid var(--secondary-color);
}

.tier-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tier-card.tier-3 .tier-badge {
    background: var(--secondary-color);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--success-color);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.tier-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.tier-description {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.tier-features {
    list-style: none;
    padding: 0;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-dark);
}

.tier-features .check-icon {
    color: var(--success-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Tier Sections for Customize Service */
.tier-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.tier-section:first-of-type {
    margin-top: 20px;
}

.tier-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.audit-scopes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (max-width: 480px) {
    .audit-scopes {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Enquiry line in tier cards */
.tier-whatsapp {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.tier-whatsapp a {
    color: #25D366;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tier-whatsapp a:hover {
    color: #1da851;
    text-decoration: underline;
}

/* Footer Logo */
.footer-logo {
    width: 60px;
    height: 60px;
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: white;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-header p {
    font-size: 18px;
    color: var(--text-gray);
}

.contact-info-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Details */
.contact-details {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-text p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Contact Action Buttons */
.contact-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-button svg {
    width: 24px;
    height: 24px;
}

.whatsapp-button {
    background: #25D366;
    color: white;
}

.whatsapp-button:hover {
    background: #20BA5A;
}

.instagram-button {
    background: linear-gradient(135deg, #833AB4 0%, #C13584 50%, #E1306C 100%);
    color: white;
}

.instagram-button:hover {
    background: linear-gradient(135deg, #6B2D94 0%, #A12867 50%, #C02756 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-tabs {
        justify-content: flex-start;
    }

    .nav-tab {
        padding: 15px 18px;
        font-size: 14px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero .subtitle {
        font-size: 16px;
    }

    .service-tiers h2,
    .contact-header h2 {
        font-size: 28px;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        padding: 30px 20px;
    }

    .contact-item {
        flex-direction: column;
        gap: 15px;
    }

    .contact-actions {
        grid-template-columns: 1fr;
    }

    .tier-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 40px 20px;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .nav-tab {
        padding: 12px 15px;
        font-size: 13px;
    }

    .tier-card h3 {
        font-size: 22px;
    }

    .contact-button {
        padding: 18px 25px;
        font-size: 15px;
    }
}
