
 
/* =========================================================
   SHREE VENKATESHWARA GUEST HOUSE
   CONTACT PAGE
========================================================= */

.svgh-contact-page {
    --svgh-navy: #071a35;
    --svgh-blue: #0b4f9c;
    --svgh-blue-light: #eaf4ff;
    --svgh-gold: #d7a93b;
    --svgh-gold-light: #fff7df;
    --svgh-text: #24344d;
    --svgh-muted: #718096;
    --svgh-white: #ffffff;
    --svgh-border: #e7edf5;
    background: #f7f9fc;
    color: var(--svgh-text);
    overflow: hidden;
}

/* =========================================================
   HERO
========================================================= */

.svgh-contact-hero {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 90px 20px 85px;
    background:
        radial-gradient(circle at 15% 20%, rgba(215,169,59,.18), transparent 28%),
        radial-gradient(circle at 85% 70%, rgba(20,103,190,.25), transparent 32%),
        linear-gradient(135deg, #06172f 0%, #0a315f 55%, #0b4f9c 100%);
}

.svgh-contact-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    left: -190px;
    top: -230px;
}

.svgh-contact-hero::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(215,169,59,.15);
    border-radius: 50%;
    right: -120px;
    bottom: -200px;
}

.svgh-contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.svgh-contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 17px;
    border: 1px solid rgba(215,169,59,.35);
    border-radius: 100px;
    background: rgba(255,255,255,.07);
    color: #f5d77d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.svgh-contact-eyebrow i {
    font-size: 12px;
}

.svgh-contact-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(40px, 6vw, 70px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -2px;
}

.svgh-contact-hero h1 span {
    color: #f0c957;
}

.svgh-contact-hero p {
    max-width: 650px;
    margin: 22px auto 0;
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.8;
}

/* =========================================================
   MAIN CONTACT SECTION
========================================================= */

.svgh-contact-main {
    max-width: 1240px;
    margin: -55px auto 0;
    padding: 0 20px 90px;
    position: relative;
    z-index: 5;
}

.svgh-contact-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 25px;
    align-items: stretch;
}

/* =========================================================
   CONTACT INFORMATION CARD
========================================================= */

.svgh-contact-info {
    background: #fff;
    border: 1px solid var(--svgh-border);
    border-radius: 26px;
    padding: 38px;
    box-shadow: 0 25px 70px rgba(13, 42, 78, .10);
}

.svgh-contact-info-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.svgh-contact-main-icon {
    width: 58px;
    height: 58px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0b4f9c, #176dc5);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 12px 25px rgba(11,79,156,.20);
}

.svgh-contact-info-top small {
    display: block;
    color: var(--svgh-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.svgh-contact-info-top h2 {
    margin: 0;
    color: var(--svgh-navy);
    font-size: 25px;
    font-weight: 850;
}

/* =========================================================
   CONTACT ITEMS
========================================================= */

.svgh-contact-item {
    display: flex;
    gap: 17px;
    padding: 21px 0;
    border-bottom: 1px solid #edf1f6;
}

.svgh-contact-item:last-child {
    border-bottom: 0;
}

.svgh-contact-item-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-size: 17px;
}

.svgh-address-icon {
    color: #0b4f9c;
    background: #eaf4ff;
}

.svgh-phone-icon {
    color: #17814a;
    background: #e9f9f0;
}

.svgh-email-icon {
    color: #a56a00;
    background: #fff6dd;
}

.svgh-contact-item-content {
    min-width: 0;
}

.svgh-contact-item-label {
    display: block;
    color: #8995a7;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}

.svgh-contact-item-content strong {
    display: block;
    color: #172b48;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 700;
}

.svgh-contact-item-content a {
    display: block;
    width: fit-content;
    color: #172b48;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
}

.svgh-contact-item-content a:hover {
    color: var(--svgh-blue);
}

/* =========================================================
   PHONE ACTIONS
========================================================= */

.svgh-phone-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.svgh-phone-list a {
    padding: 7px 11px;
    background: #f4f8fc;
    border: 1px solid #e6edf5;
    border-radius: 9px;
    font-size: 13px;
}

.svgh-phone-list a:hover {
    background: #eaf4ff;
    border-color: #cbdff5;
}

/* =========================================================
   QUICK ACTIONS
========================================================= */

.svgh-contact-actions {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}

.svgh-contact-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    border-radius: 13px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: .25s ease;
}

.svgh-call-action {
    background: var(--svgh-navy);
    color: #fff;
}

.svgh-call-action:hover {
    color: #fff;
    background: #0c2b53;
    transform: translateY(-2px);
}

.svgh-whatsapp-action {
    background: #eaf9f0;
    color: #168047;
    border: 1px solid #d3efdf;
}

.svgh-whatsapp-action:hover {
    color: #168047;
    background: #dff5e8;
    transform: translateY(-2px);
}

/* =========================================================
   MAP CARD
========================================================= */

.svgh-map-card {
    min-height: 100%;
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--svgh-border);
    box-shadow: 0 25px 70px rgba(13, 42, 78, .10);
    display: flex;
    flex-direction: column;
}

.svgh-map-heading {
    padding: 27px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #edf1f6;
}

.svgh-map-title {
    display: flex;
    align-items: center;
    gap: 13px;
}

.svgh-map-title-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--svgh-gold-light);
    color: #a56a00;
}

.svgh-map-title h3 {
    margin: 0;
    color: var(--svgh-navy);
    font-size: 19px;
    font-weight: 850;
}

.svgh-map-title span {
    display: block;
    color: #8995a7;
    font-size: 12px;
    margin-top: 3px;
}

.svgh-map-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #edf5ff;
    color: var(--svgh-blue);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition: .25s ease;
}

.svgh-map-button:hover {
    color: var(--svgh-blue);
    background: #dcecff;
}

.svgh-map-frame {
    flex: 1;
    min-height: 520px;
    position: relative;
    background: #e8eef5;
}

.svgh-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    display: block;
}

/* =========================================================
   LOCATION STRIP
========================================================= */

.svgh-location-strip {
    max-width: 1240px;
    margin: 0 auto 90px;
    padding: 0 20px;
}

.svgh-location-box {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 30px 35px;
    background:
        radial-gradient(circle at 90% 10%, rgba(215,169,59,.18), transparent 30%),
        linear-gradient(110deg, #071a35, #0b4f9c);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.svgh-location-box::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    right: -80px;
    bottom: -130px;
}

.svgh-location-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 17px;
}

.svgh-location-pin {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.12);
    color: #f4ce67;
    font-size: 20px;
}

.svgh-location-content small {
    display: block;
    color: #f0c957;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.svgh-location-content strong {
    display: block;
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
}

.svgh-location-link {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 18px;
    border-radius: 12px;
    background: #fff;
    color: var(--svgh-navy);
    text-decoration: none;
    font-size: 12px;
    font-weight: 850;
    transition: .25s ease;
}

.svgh-location-link:hover {
    color: var(--svgh-navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

/* =========================================================
   BOTTOM CTA
========================================================= */

.svgh-contact-cta {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px 90px;
}

.svgh-contact-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--svgh-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.svgh-contact-cta h2 {
    margin: 0;
    color: var(--svgh-navy);
    font-size: clamp(27px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -1px;
}

.svgh-contact-cta p {
    margin: 13px auto 25px;
    color: var(--svgh-muted);
    line-height: 1.8;
    font-size: 15px;
}

.svgh-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 11px;
}

.svgh-cta-call,
.svgh-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    transition: .25s ease;
}

.svgh-cta-call {
    background: var(--svgh-navy);
    color: #fff;
}

.svgh-cta-call:hover {
    color: #fff;
    transform: translateY(-2px);
}

.svgh-cta-whatsapp {
    background: #eaf9f0;
    color: #168047;
    border: 1px solid #d7efdf;
}

.svgh-cta-whatsapp:hover {
    color: #168047;
    transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .svgh-contact-grid {
        grid-template-columns: 1fr;
    }

    .svgh-map-frame,
    .svgh-map-frame iframe {
        min-height: 430px;
    }

    .svgh-contact-main {
        margin-top: -35px;
    }
}

@media (max-width: 768px) {

    .svgh-contact-hero {
        min-height: 340px;
        padding: 75px 18px 70px;
    }

    .svgh-contact-hero h1 {
        letter-spacing: -1px;
    }

    .svgh-contact-hero p {
        font-size: 14px;
        line-height: 1.7;
    }

    .svgh-contact-main {
        padding: 0 14px 65px;
        margin-top: -25px;
    }

    .svgh-contact-info {
        padding: 27px 22px;
        border-radius: 21px;
    }

    .svgh-map-card {
        border-radius: 21px;
    }

    .svgh-map-heading {
        padding: 21px;
    }

    .svgh-map-button {
        padding: 9px 11px;
    }

    .svgh-map-frame,
    .svgh-map-frame iframe {
        min-height: 360px;
    }

    .svgh-location-strip {
        padding: 0 14px;
        margin-bottom: 65px;
    }

    .svgh-location-box {
        padding: 25px 21px;
        align-items: flex-start;
        flex-direction: column;
    }

    .svgh-location-link {
        width: 100%;
        justify-content: center;
    }

    .svgh-contact-cta {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {

    .svgh-contact-eyebrow {
        font-size: 10px;
        padding: 7px 12px;
    }

    .svgh-contact-hero {
        min-height: 310px;
    }

    .svgh-contact-info-top h2 {
        font-size: 21px;
    }

    .svgh-contact-item {
        gap: 12px;
    }

    .svgh-contact-item-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 12px;
    }

    .svgh-contact-actions {
        grid-template-columns: 1fr;
    }

    .svgh-map-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .svgh-map-button {
        width: 100%;
        justify-content: center;
    }

    .svgh-map-frame,
    .svgh-map-frame iframe {
        min-height: 320px;
    }

    .svgh-location-content {
        align-items: flex-start;
    }

    .svgh-location-content strong {
        font-size: 13px;
    }

    .svgh-cta-buttons {
        flex-direction: column;
    }

    .svgh-cta-call,
    .svgh-cta-whatsapp {
        width: 100%;
    }
}
 