/* ======================== PAGE HERO ======================== */
.page-hero {
    background: linear-gradient(135deg,
                rgba(10, 31, 61, 0.95),
                rgba(26, 58, 107, 0.90)),
                url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 110px 20px 85px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%,
        rgba(212, 175, 55, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent, var(--secondary), transparent);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.page-hero-content h1 {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.page-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 1.2s ease;
}

.breadcrumb a {
    color: var(--secondary);
    transition: var(--transition);
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--secondary); }

/* Active Contact Nav */
.active-contact {
    background: var(--white) !important;
    color: var(--primary) !important;
}

/* ======================== SECTION LABELS ======================== */
.section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-dark);
    background: rgba(212, 175, 55, 0.12);
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 14px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-heading p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 18px auto 0;
    line-height: 1.8;
}

/* ======================== INFO CARDS ======================== */
.contact-info-section {
    padding: 60px 20px;
    background: var(--white);
}

.contact-info-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.info-card {
    background: var(--light-bg);
    padding: 38px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        var(--secondary), var(--secondary-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--secondary);
    background: var(--white);
}

.info-icon {
    font-size: 46px;
    margin-bottom: 18px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.2));
    transition: var(--transition);
}

.info-card:hover .info-icon {
    transform: scale(1.15) rotate(5deg);
}

.info-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.info-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-dark);
    transition: var(--transition);
    display: inline-block;
}

.info-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.open-status {
    color: #28a745;
    cursor: default;
}

/* ======================== MAIN CONTACT SECTION ======================== */
.contact-main {
    padding: 90px 20px;
    background: var(--light-bg);
}

.contact-main-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* ======================== CONTACT FORM BOX ======================== */
.contact-form-box {
    flex: 1.4;
    min-width: 320px;
    background: var(--white);
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--secondary);
}

.contact-form-box h2 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 12px;
    margin-top: 10px;
}

.contact-form-box h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 12px 0 0;
    border-radius: 2px;
}

.contact-form-box > p {
    font-size: 15.5px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 18px 0 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e8ecf0;
    border-radius: 10px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    color: var(--text-dark);
    background: var(--light-bg);
    transition: var(--transition);
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aab0bc;
    font-size: 14px;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 5px;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text-light);
}

.form-note span:first-child { font-size: 18px; }

.submit-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    white-space: nowrap;
}

.btn-arrow {
    font-size: 18px;
    transition: var(--transition);
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* ======================== CONTACT DETAILS BOX ======================== */
.contact-details-box {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-details-box h2 {
    font-size: 34px;
    color: var(--primary);
    margin-top: 10px;
    line-height: 1.2;
}

.contact-details-box h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 12px 0 0;
    border-radius: 2px;
}

.contact-tagline {
    font-size: 16px;
    color: var(--secondary-dark);
    font-style: italic;
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

.detail-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.detail-item:hover {
    border-left-color: var(--secondary);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.detail-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-family: "Poppins", sans-serif;
}

.detail-text p {
    font-size: 15.5px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.detail-text a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.detail-text a:hover {
    color: var(--secondary-dark);
}

/* ======================== SOCIAL LINKS ======================== */
.social-section h4,
.quick-services h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 14px;
    font-family: "Playfair Display", serif;
}

.social-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.linkedin {
    background: #0077b5;
    color: var(--white);
    font-family: serif;
    font-size: 20px;
}

.twitter {
    background: #000000;
    color: var(--white);
    font-size: 16px;
}

.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    font-size: 20px;
}

.whatsapp {
    background: #25d366;
    color: var(--white);
    font-size: 22px;
}

/* ======================== QUICK SERVICES ======================== */
.quick-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-service-tags a {
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    background: var(--white);
    color: var(--primary);
    border-radius: 20px;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.quick-service-tags a:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

/* ======================== MAP SECTION ======================== */
.map-section {
    padding: 90px 20px;
    background: var(--white);
}

.map-container {
    max-width: 1200px;
    margin: auto;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(212, 175, 55, 0.25);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-overlay-card {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--white);
    padding: 28px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--secondary);
    min-width: 220px;
    text-align: center;
}

.map-card-icon {
    font-size: 38px;
    margin-bottom: 10px;
}

.map-overlay-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 6px;
}

.map-overlay-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.5;
}

.map-btn {
    font-size: 13px;
    padding: 10px 20px;
}

/* ======================== FAQ SECTION ======================== */
.faq-section {
    padding: 90px 20px;
    background: var(--light-bg);
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--secondary);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-align: left;
    font-family: "Poppins", sans-serif;
    transition: var(--transition);
}

.faq-question span:first-child {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.5;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--secondary-dark);
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--secondary);
    color: var(--primary);
}

.faq-item.active .faq-question span:first-child {
    color: var(--secondary-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 22px;
    font-size: 15.5px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--secondary-dark);
    font-weight: 600;
    transition: var(--transition);
}

.faq-answer a:hover {
    color: var(--primary);
}

/* ======================== CTA BUTTONS ======================== */
.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-cta-outline {
    padding: 13px 32px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.btn-cta-outline:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 31, 61, 0.3);
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1100px) {
    .contact-info-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .page-hero-content h1 { font-size: 44px; }
    .contact-main-container { gap: 35px; }
    .contact-form-box { padding: 40px 30px; }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 15px 60px;
        background-attachment: scroll;
    }
    .page-hero-content h1 { font-size: 34px; }
    .page-hero-content p { font-size: 16px; }

    .contact-info-container {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .contact-main-container {
        flex-direction: column;
        gap: 35px;
    }

    .contact-form-box { padding: 30px 22px; }
    .contact-form-box h2 { font-size: 28px; }

    .form-row { grid-template-columns: 1fr; }
    .form-footer { flex-direction: column; align-items: flex-start; }
    .submit-btn { width: 100%; justify-content: center; }

    .map-wrapper { height: 400px; }
    .map-overlay-card {
        top: 15px; left: 15px;
        padding: 18px 20px;
        min-width: 180px;
    }
    .map-overlay-card h3 { font-size: 17px; }

    .faq-question span:first-child { font-size: 15px; }
    .faq-question { padding: 18px 20px; }
    .faq-answer p { padding: 0 20px 18px; font-size: 14.5px; }

    .section-heading h2 { font-size: 28px; }

    .contact-info-section,
    .contact-main,
    .map-section,
    .faq-section { padding: 60px 15px; }

    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-cta-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 { font-size: 28px; }

    .contact-info-container {
        grid-template-columns: 1fr;
    }

    .info-card { padding: 28px 22px; }
    .info-icon { font-size: 38px; }

    .contact-form-box h2 { font-size: 24px; }
    .contact-details-box h2 { font-size: 26px; }

    .map-wrapper { height: 320px; }
    .map-overlay-card { display: none; }

    .social-btn { width: 42px; height: 42px; font-size: 16px; }
}