/* =============================================
   CONTACT PAGE - COMPLETE CSS
   ============================================= */

/* ===== SECTION 1: HERO WITH FEATURES ===== */
.shastra-contact-hero-v3 {
    position: relative;
    overflow: hidden;
}

.shastra-contact-hero-content {
    position: relative;
    z-index: 3;
}

.shastra-contact-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 3;
}

.shastra-contact-feature-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0, 0, 0.3642, 1);
    backdrop-filter: blur(10px);
}

.shastra-contact-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--accent-color-rgb), 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(var(--accent-color-rgb), 0.2);
}

.shastra-cf-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.shastra-cf-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.2), rgba(var(--primary-color-rgb), 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0, 0, 0.3642, 1);
    position: relative;
    z-index: 2;
}

.shastra-cf-icon svg {
    stroke: rgb(255, 255, 255);
}

.shastra-contact-feature-card:hover .shastra-cf-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: scale(1.1) rotate(5deg);
}

.shastra-cf-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(var(--accent-color-rgb), 0.3);
    animation: pulseEffect 2s ease-out infinite;
    z-index: 1;
}

@keyframes pulseEffect {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.shastra-contact-feature-card h5 {
    font-size: 18px;
    font-weight: 600;
}

.shastra-contact-feature-card p {
    font-size: 14px;
    margin: 0;
}

.shastra-contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.shastra-contact-bg-pattern svg {
    width: 100%;
    height: 100%;
}

/* ===== SECTION 2: CONTACT DETAILS ===== */
.shastra-contact-details-v2 {
    /* background-color: rgb(252, 252, 249); */
    position: relative;
}

.shastra-contact-info-column {
    height: 100%;
}

.shastra-info-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0, 0, 0.3642, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.shastra-info-card:last-child {
    margin-bottom: 0;
}

.shastra-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(var(--accent-color-rgb), 0.15);
    border-color: var(--accent-color);
}

.shastra-info-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.1), rgba(var(--primary-color-rgb), 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.shastra-info-icon-circle svg {
    stroke: var(--accent-color);
}

.shastra-info-card:hover .shastra-info-icon-circle {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: scale(1.1) rotate(-5deg);
}

.shastra-info-card:hover .shastra-info-icon-circle svg {
    stroke: rgb(255, 255, 255);
}

.shastra-info-content {
    flex: 1;
}

.shastra-info-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
}

.shastra-info-value {
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    line-height: 1.6;
}

.shastra-info-value a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: color 0.3s ease;
}

.shastra-info-value a:hover {
    color: var(--accent-color);
}

.shastra-map-wrapper {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.shastra-map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(var(--accent-color-rgb), 0.15);
    border-color: var(--accent-color);
}

.shastra-map-header h4 {
    margin-bottom: 10px;
}

.shastra-map-header p {
    margin: 0;
}

.shastra-map-embed {
    border-radius: 12px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.shastra-map-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.shastra-social-section-wrapper {
    background: linear-gradient(135deg, rgba(242, 242, 242, 0.5), rgba(255, 255, 255, 0.8));
    border: 2px solid rgba(var(--accent-color-rgb), 0.15);
    border-radius: 20px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.shastra-social-section-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--accent-color-rgb), 0.03), transparent 70%);
    animation: rotateBackground 15s linear infinite;
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.shastra-social-header {
    position: relative;
    z-index: 2;
}

.shastra-social-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.shastra-social-platform-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0, 0, 0.3642, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shastra-social-platform-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.shastra-spc-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.shastra-instagram:hover .shastra-spc-bg-gradient {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    opacity: 0.1;
}

.shastra-linkedin:hover .shastra-spc-bg-gradient {
    background: linear-gradient(135deg, #0077b5, #005885);
    opacity: 0.1;
}

.shastra-twitter:hover .shastra-spc-bg-gradient {
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
    opacity: 0.1;
}

.shastra-youtube:hover .shastra-spc-bg-gradient {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    opacity: 0.1;
}

.shastra-spc-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.1), rgba(var(--primary-color-rgb), 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0, 0, 0.3642, 1);
    position: relative;
    z-index: 2;
}

.shastra-spc-icon svg {
    stroke: var(--accent-color);
    transition: all 0.3s ease;
}

.shastra-instagram:hover .shastra-spc-icon {
    background: linear-gradient(135deg, #f09433, #bc1888);
}

.shastra-linkedin:hover .shastra-spc-icon {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.shastra-twitter:hover .shastra-spc-icon {
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.shastra-youtube:hover .shastra-spc-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.shastra-social-platform-card:hover .shastra-spc-icon {
    transform: scale(1.15) rotate(10deg);
}

.shastra-social-platform-card:hover .shastra-spc-icon svg {
    stroke: rgb(255, 255, 255);
}

.shastra-spc-content {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.shastra-spc-platform {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
}

.shastra-spc-handle {
    font-size: 18px;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

.shastra-spc-arrow {
    position: relative;
    z-index: 2;
    font-size: 28px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.shastra-social-platform-card:hover .shastra-spc-arrow {
    transform: translateX(5px);
}

/* ===== SECTION 3: INQUIRY FORM ===== */
.shastra-inquiry-section-alt {
    background-color: rgb(252, 252, 249);
}

.shastra-inquiry-benefits-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.shastra-inquiry-benefit-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0, 0, 0.3642, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.shastra-inquiry-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(var(--accent-color-rgb), 0.15);
    border-color: var(--accent-color);
}

.shastra-ibc-icon-circle {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.1), rgba(var(--primary-color-rgb), 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0, 0, 0.3642, 1);
}

.shastra-ibc-icon-circle i {
    font-size: 24px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.shastra-inquiry-benefit-card:hover .shastra-ibc-icon-circle {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: scale(1.1);
}

.shastra-inquiry-benefit-card:hover .shastra-ibc-icon-circle i {
    color: rgb(255, 255, 255);
    transform: rotate(10deg) scale(1.1);
}

.shastra-ibc-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

.shastra-ibc-content p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

.shastra-inquiry-feature-highlight {
    background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.08), rgba(var(--primary-color-rgb), 0.12));
    border: 2px solid rgba(var(--accent-color-rgb), 0.2);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0, 0, 0.3642, 1);
    position: relative;
    overflow: hidden;
}

.shastra-inquiry-feature-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--accent-color-rgb), 0.1), transparent 70%);
    animation: rotateFeature 15s linear infinite;
}

@keyframes rotateFeature {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.shastra-inquiry-feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(var(--accent-color-rgb), 0.2);
    border-color: var(--accent-color);
}

.shastra-ifh-icon {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(var(--accent-color-rgb), 0.3);
}

.shastra-ifh-icon i {
    color: rgb(255, 255, 255);
    font-size: 24px;
}

.shastra-inquiry-feature-highlight h6 {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

.shastra-inquiry-feature-highlight p {
    position: relative;
    z-index: 2;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

.shastra-inquiry-form-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.shastra-inquiry-form-card:hover {
    box-shadow: 0 20px 60px rgba(var(--accent-color-rgb), 0.15);
    border-color: var(--accent-color);
}

.shastra-form-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.shastra-form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shastra-form-field label {
    font-size: 14px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    letter-spacing: 0.3px;
}

.shastra-form-input {
    padding: 15px 18px;
    background: rgb(252, 252, 252);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    font-size: 15px;
    color: rgb(0, 0, 0);
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0, 0, 0.3642, 1);
}

.shastra-form-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.shastra-form-input:focus {
    outline: none;
    background: rgb(255, 255, 255);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(var(--accent-color-rgb), 0.1);
}

.shastra-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgb(0,0,0)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    cursor: pointer;
    padding-right: 40px;
}

.shastra-form-full {
    grid-column: 1 / -1;
}

.shastra-form-textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

.shastra-form-submit-alt {
    margin-top: 35px;
    text-align: center;
}

.shastra-inquiry-btn-premium {
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border: none;
    border-radius: 10px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0, 0, 0.3642, 1);
    box-shadow: 0 8px 25px rgba(var(--accent-color-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.shastra-inquiry-btn-premium::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 ease;
}

.shastra-inquiry-btn-premium:hover::before {
    left: 100%;
}

.shastra-inquiry-btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(var(--accent-color-rgb), 0.5);
}

.shastra-inquiry-btn-premium i {
    font-size: 16px;
}

.shastra-form-disclaimer {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 18px;
    margin-bottom: 0;
}

.shastra-inquiry-success-alt {
    text-align: center;
    padding: 60px 40px;
}

.shastra-isa-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(67, 160, 71, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: successPulse 1s ease-in-out;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.shastra-isa-icon i {
    font-size: 50px;
    color: rgb(76, 175, 80);
}

.shastra-inquiry-success-alt h3 {
    font-size: 28px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
}

.shastra-inquiry-success-alt p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 30px;
}

.shastra-button-secondary-alt {
    padding: 14px 35px;
    background: var(--accent-color);
    border: none;
    border-radius: 6px;
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shastra-button-secondary-alt:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== SECTION 4: CLOSING MESSAGE ===== */
.shastra-closing-section {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shastra-closing-content {
    position: relative;
    z-index: 3;
}

.shastra-closing-title-wrapper {
    perspective: 1000px;
}

.shastra-hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.shastra-title-word {
    display: inline-block;
    /* color: rgb(255, 255, 255); */
    margin: 0 12px;
    animation: titleWaveIn 0.8s cubic-bezier(0, 0, 0.3642, 1) forwards;
}

.shastra-word-1 {
    animation-delay: 0s;
}

.shastra-word-2 {
    animation-delay: 0.2s;
}

.shastra-word-3 {
    animation-delay: 0.4s;
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(var(--accent-color-rgb), 0.5);
}

@keyframes titleWaveIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.shastra-closing-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.shastra-button-hollow {
    padding: 16px 40px;
    background-color: transparent;
    border: 2px solid var(--accent-color); /* updated */
    border-radius: 4px;
    color: var(--accent-color); /* updated */
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0, 0, 0.3642, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.shastra-button-hollow:hover {
    background-color: var(--accent-color); /* updated */
    color: rgb(255, 255, 255); /* updated */
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(var(--accent-color-rgb), 0.3); /* updated */
}


.shastra-closing-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shastra-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.shastra-gradient-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    mix-blend-mode: screen;
}

.shastra-circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-color), transparent);
    top: -150px;
    left: -100px;
    animation: floatCircle 20s ease-in-out infinite;
}

.shastra-circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    bottom: -100px;
    right: -50px;
    animation: floatCircle 25s ease-in-out infinite;
    animation-direction: reverse;
}

.shastra-circle-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(var(--accent-color-rgb), 0.5), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatCircle 30s ease-in-out infinite;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 50px);
    }
}

.shastra-animated-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* ===== SECTION 5: FINAL BANNER ===== */
.shastra-final-banner {
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.2), rgba(var(--accent-color-rgb), 0.15));
    position: relative;
    overflow: hidden;
}

.shastra-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.shastra-banner-logo {
    flex-shrink: 0;
}

.shastra-logo-animated {
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

.shastra-banner-text {
    text-align: center;
}

.shastra-banner-title {
    font-size: 32px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(var(--accent-color-rgb), 0.6);
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(var(--accent-color-rgb), 0.4);
    }
    50% {
        text-shadow: 0 0 40px rgba(var(--accent-color-rgb), 0.8);
    }
}

.shastra-banner-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.shastra-banner-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.shastra-dot-pulse {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(var(--accent-color-rgb), 0.6);
}

.shastra-dot-pulse:nth-child(2) {
    animation-delay: 0.2s;
}

.shastra-dot-pulse:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 992px) {
    .shastra-contact-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .shastra-contact-feature-card {
        padding: 35px 25px;
    }
    
    .shastra-map-wrapper {
        padding: 35px;
    }
    
    .shastra-map-embed {
        height: 400px;
    }
    
    .shastra-social-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .shastra-inquiry-benefit-card {
        padding: 25px;
    }
    
    .shastra-inquiry-form-card {
        padding: 40px 30px;
    }
    
    .shastra-form-grid-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shastra-hero-title {
        font-size: 48px;
    }
    
    .shastra-banner-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .shastra-contact-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shastra-contact-feature-card {
        padding: 30px 25px;
    }
    
    .shastra-info-card {
        padding: 20px;
    }
    
    .shastra-info-icon-circle {
        width: 55px;
        height: 55px;
    }
    
    .shastra-map-wrapper {
        padding: 30px 25px;
    }
    
    .shastra-map-embed {
        height: 350px;
    }
    
    .shastra-social-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .shastra-social-platform-card {
        padding: 30px 25px;
    }
    
    .shastra-inquiry-form-card {
        padding: 35px 25px;
    }
    
    .shastra-form-input {
        padding: 14px 15px;
        font-size: 14px;
    }
    
    .shastra-form-textarea {
        min-height: 120px;
    }
    
    .shastra-inquiry-btn-premium {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
    
    .shastra-hero-title {
        font-size: 36px;
    }
    
    .shastra-closing-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    /* .shastra-button,
    .shastra-button-hollow {
        width: 100%;
        justify-content: center;
    }
     */
    .shastra-banner-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .shastra-map-wrapper {
        padding: 25px 20px;
    }
    
    .shastra-map-embed {
        height: 300px;
    }
    
    .shastra-inquiry-benefit-card {
        padding: 20px;
    }
    
    .shastra-inquiry-form-card {
        padding: 30px 20px;
    }
    
    .shastra-ibc-icon-circle {
        width: 55px;
        height: 55px;
    }
    
    .shastra-hero-title {
        font-size: 28px;
    }
    
    .shastra-closing-section {
        min-height: 500px;
    }
    
    .shastra-banner-title {
        font-size: 24px;
    }
}
