/* ============================================
   HERO ALIGNMENT + IMAGE ENHANCEMENTS
   Content starts at flex-start, image gets a
   floating glow + drop shadow treatment
   ============================================ */
.contact-hero-section .site-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.contact-hero-section .hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    justify-content: flex-start;
}

.contact-hero-section .hero-right {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
}

.contact-hero-section .hero-right::before {
    content: "";
    position: absolute;
    top: 8%;
    left: 50%;
    width: 92%;
    height: 92%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(0, 105, 255, 0.22) 0%, rgba(0, 105, 255, 0) 70%);
    filter: blur(36px);
    z-index: 0;
    pointer-events: none;
}

.contact-hero-description {
    font-size: 16px;
    color: #120A1F;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 560px;
}
.buttons a {
    text-decoration: none !important;
}

/* ============================================
   SHARED SECTION HEADER
   ============================================ */
.section-header-centered {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 17px;
    color: #4b5563;
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.6;
}

/* ============================================
   CONTACT GRID V2 - Exact match: support spans full height,
   sales wide on top-right, billing + abuse split below it
   ============================================ */
.contact-grid-section {
    padding: 60px 0;
    background: #ffffff;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 17px;
    color: #4b5563;
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.6;
}

.contact-grid-v2 {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.cg-card {
    position: relative;
    background: #eef2ff;
    border-radius: 24px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

/* Glass mirror-shine sweep on hover */
.cg-card::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.45) 50%, transparent 60%);
    opacity: 0;
    transform: translateX(-30%);
    transition: opacity 0.35s ease, transform 0.6s ease;
    pointer-events: none;
}

.cg-card:hover::after {
    opacity: 1;
    transform: translateX(30%);
}

.cg-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 10px;
}

.cg-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

.cg-icon-bubble {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0069ff;
    font-size: 16px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.cg-checklist {
    list-style: none;
    padding: 0;
}

.cg-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 9px;
}

.cg-checklist i,
.cg-link-line i {
    color: #0069ff;
    font-size: 11px;
}

.cg-link-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.cg-checklist a,
.cg-link-line a {
    color: #4b5563;
    text-decoration: none;
}

.cg-checklist a:hover,
.cg-link-line a:hover {
    color: #0069ff;
}

.cg-btn {
    display: inline-block;
    width: fit-content;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: #0069ff;
    color: #ffffff;
    margin-top: auto;
    z-index: 2;
    transition: all 0.3s ease;
}

.cg-btn:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 105, 255, 0.3);
}

/* Support - left column, spans both rows (full height) */
.cg-support {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: 680px;
}

/* Sales - top, spans the two right columns */
.cg-sales {
    grid-column: 2 / span 2;
    grid-row: 1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 240px;
}

.cg-sales-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.cg-sales-media {
    position: relative;
    width: 42%;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
}

.cg-sales-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.cg-floating-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #ffffff;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #0a0a0a;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.cg-floating-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
}

/* Billing - bottom-middle column */
.cg-billing {
    grid-column: 2;
    grid-row: 2;
    background: #d9f7e6;
    min-height: 220px;
}

/* Abuse - bottom-right column */
.cg-abuse {
    grid-column: 3;
    grid-row: 2;
    min-height: 220px;
}

@media (max-width: 992px) {
    .contact-grid-v2 { grid-template-columns: 1fr; }
    .cg-support, .cg-sales, .cg-billing, .cg-abuse {
        grid-column: 1;
        grid-row: auto;
        min-height: auto;
    }
    .section-title { font-size: 28px; }
}

@media (max-width: 640px) {
    .cg-sales { flex-direction: column; align-items: stretch; }
    .cg-sales-media { width: 100%; }
    .cg-card { padding: 26px 22px; }
}
/* ============================================
   WHY CONTACT VYOMCLOUD SECTION
   ============================================ */
.why-contact-section {
    padding: 60px 0;
    background: #f8fbff;
}

.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1600px;
    margin: 0 auto;
}

.wc-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 30px 26px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.wc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.wc-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 10px;
}

.wc-lead {
    font-size: 14.5px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 10px;
}

.wc-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.wc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 16px;
}

.wc-list li {
    font-size: 13.5px;
    color: #4b5563;
    padding: 5px 0;
    display: flex;
    align-items: center;
    break-inside: avoid;
}

.wc-list li::before {
    content: "✓";
    color: #0069ff;
    margin-right: 8px;
    font-weight: bold;
    font-size: 12px;
}

@media (max-width: 992px) {
    .why-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .wc-list { columns: 1; }
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-form-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    max-width: 1600px;
    margin: 0 auto;
}

.contact-form-wrapper {
    padding: 48px 40px;
}

.form-header {
    margin-bottom: 32px;
}

.form-badge {
    display: inline-block;
    background: rgba(0, 105, 255, 0.1);
    color: #0069ff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 12px;
}

.form-header p {
    font-size: 16px;
    color: #120A1F;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #120A1F;
}

.required { color: #ef4444; }

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #fafbfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0069ff;
    box-shadow: 0 0 0 3px rgba(0, 105, 255, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #9ca3af;
}

.vyom-error-message {
    color: #ef4444;
    font-size: 13px;
    margin-top: 4px;
    display: none;
}

.cf-char-count {
    font-size: 12px;
    color: #120A1F;
    margin-top: 4px;
    text-align: right;
}

.cf-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.cf-form-error {
    color: #ef4444;
    font-size: 14px;
    margin-top: 10px;
    display: none;
    font-weight: 500;
}

.cf-loading {
    display: none;
    color: #0069ff;
    font-weight: 500;
    margin-top: 15px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0 5px;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #0069ff;
}

.form-checkbox label {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.form-checkbox a {
    color: #0069ff;
    text-decoration: none;
    font-weight: 500;
}

.form-checkbox a:hover { text-decoration: underline; }

.form-submit-btn {
    padding: 16px 32px;
    background: #0069ff;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
    margin-top: 10px;
}

.form-submit-btn:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.cf-success-panel {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.cf-success-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.cf-success-panel h3 {
    font-size: 24px;
    color: #0a0a0a;
    margin-bottom: 15px;
}

.cf-success-panel p {
    color: #120A1F;
    font-size: 16px;
    margin-bottom: 25px;
}

.cf-success-btn { width: auto; }

/* Contact Info Wrapper */
.contact-info-wrapper {
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
    padding: 48px 32px;
    display: flex;
    align-items: center;
}

.contact-info-card { width: 100%; }

.contact-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 12px;
}

.contact-info-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #0069ff;
    border-radius: 3px;
}

.info-block {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0069ff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 6px;
}

.info-content p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.info-content a {
    color: #0069ff;
    text-decoration: none;
    font-weight: 500;
}

.info-content a:hover { text-decoration: underline; }

.text-primary { color: #0069ff; }

.emergency-link {
    font-weight: 600;
    color: #0069ff;
}

.social-links { margin-top: 32px; }

.social-links h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
    text-decoration: none;
}

.social-icon:hover {
    background: #0069ff;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ============================================
   MAP SECTION
   ============================================ */
.contact-map-section {
    padding: 0 0 60px;
    background: #ffffff;
}

.map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    max-width: 1600px;
    margin: 0 auto;
}

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

/* ============================================
   CTA BANNER - Looking for More
   ============================================ */
.contact-cta-section {
    padding: 0 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.cta-gradient-container {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 24px;
    padding: 48px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 105, 255, 0.2);
    max-width: 1600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.9;
    color: #ffffff;
    max-width: 100%;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cta-btn-primary {
    padding: 14px 32px;
    background: #ffffff;
    color: #0069ff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   CONTACT FAQ V2 - two-column accordion
   Hierarchy: h2 section title > h3 question > h4 answer
   ============================================ */
.contact-faq-v2 {
    padding: 60px 0;
    background: #f8fbff;
}

.cfaq-header { text-align: center; margin-bottom: 40px; }

.cfaq-eyebrow {
    display: inline-block;
    color: #0069ff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

.cfaq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.cfaq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
}

.cfaq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    padding: 0;
}

.cfaq-q h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.5;
    margin: 0;
}

.cfaq-toggle {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border: 1.5px solid #0069ff;
    border-radius: 50%;
    color: #0069ff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: 2px;
}

.cfaq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.cfaq-item.open .cfaq-a {
    max-height: 300px;
    margin-top: 10px;
}

.cfaq-a h4 {
    font-size: 14.5px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .cfaq-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================
   UNIFIED SECTION SPACING
   ============================================ */
.contact-hero-section,
.contact-grid-section,
.why-contact-section,
.contact-form-section,
.contact-map-section,
.contact-faq-v2,
.contact-cta-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.contact-hero-section { padding-top: 40px; }
.contact-map-section { padding-top: 0; padding-bottom: 60px; }

@media (max-width: 1024px) {
    .contact-hero-section,
    .contact-grid-section,
    .why-contact-section,
    .contact-form-section,
    .contact-map-section,
    .contact-faq-v2,
    .contact-cta-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .contact-form-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .contact-hero-section,
    .contact-grid-section,
    .why-contact-section,
    .contact-form-section,
    .contact-map-section,
    .contact-faq-v2,
    .contact-cta-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .contact-map-section { padding-top: 0; }

    .contact-form-wrapper { padding: 30px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 15px; }
    .contact-info-wrapper { padding: 30px 20px; }

    .cta-gradient-container { flex-direction: column; text-align: center; padding: 40px 30px; }
    .section-title { font-size: 28px; }

    .cfaq-header h2 { font-size: 28px; }
    .map-container { height: 300px; }

    .contact-hero-section .site-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-hero-section .hero-left {
        align-items: left;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .cta-content h2 { font-size: 24px; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-btn-primary { text-align: center; }
    .map-container { height: 250px; }
}



/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   Perfectly matches colocation page design language
   ============================================ */
/* Contact Grid Section - Matches VPS plans grid */


.contact-grid-section {
    padding: 40px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

/* Contact Cards - Exact match with vps-card */
.contact-card {
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: left;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Best Deal / Featured Card - Matches vps-card.best-deal */
.contact-card.best-deal {
    position: relative;
    background: white;
    border: none;
}

.contact-card.best-deal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 3px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ============================================
   HERO IMAGE - floating glow + drop shadow
   ============================================ */
.hero-image {
    position: relative;
    z-index: 1;
    width: 82%;
    max-width: 480px;
    height: auto;
    display: block;
    margin: 0 auto;
    mask: radial-gradient(ellipse 70% 70% at center, black 60%, transparent 100%);
    -webkit-mask: radial-gradient(ellipse 70% 70% at center, black 60%, transparent 100%);
    filter: drop-shadow(0 24px 36px rgba(0, 105, 255, 0.28));
    /* animation: heroFloat 5s ease-in-out infinite; */
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.contact-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
    color: black;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 105, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #0069ff;
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a0a0a;
    }

.contact-card p {
    font-size: 14px;
    color: #120A1F;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.contact-card-details {
    margin-bottom: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-detail-item i {
    width: 16px;
    color: #0069ff;
    font-size: 14px;
}

.contact-detail-item a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-detail-item a:hover {
    color: #0069ff;
}

.contact-card-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #0069ff;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.contact-card-btn:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.contact-card-btn.support-btn {
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
    background-size: 200% 200%;
    animation: badgeGradient 3s ease infinite;
    color: black;
}

@keyframes badgeGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================================
   GLOSSY SHINE EFFECT - applied to every button
   (same mirror-sweep used on the .cg-card cards)
   ============================================ */
.form-submit-btn,
.cg-btn,
.contact-card-btn,
.cta-btn-primary,
.start-btn,
.trial-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.form-submit-btn::after,
.cg-btn::after,
.contact-card-btn::after,
.cta-btn-primary::after,
.start-btn::after,
.trial-btn::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
    opacity: 0;
    transform: translateX(-30%);
    transition: opacity 0.35s ease, transform 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.form-submit-btn:hover::after,
.cg-btn:hover::after,
.contact-card-btn:hover::after,
.cta-btn-primary:hover::after,
.start-btn:hover::after,
.trial-btn:hover::after {
    opacity: 1;
    transform: translateX(30%);
}

/* ==========================================
   Responsive - Contact Grid
   ========================================== */

/* Large Desktop (1600px+) */
@media (min-width: 1600px) {
    .contact-grid {
        max-width: 1500px;
        margin: 20px auto 0;
        gap: 35px;
    }

    .contact-card {
        padding: 36px 30px;
    }
}

/* Desktop */
@media (max-width: 1399px) {
    .contact-grid {
        gap: 24px;
    }

    .contact-card {
        padding: 30px 22px;
    }
}

/* Laptop */
@media (max-width: 1199px) {

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .contact-card.best-deal {
        grid-column: 1 / -1;
        order: 3;
    }

    .contact-card h3 {
        font-size: 21px;
    }

    .contact-card p {
        font-size: 15px;
    }
}

/* Tablet */
@media (max-width: 991px) {

    .contact-grid-section {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .contact-card.best-deal {
        grid-column: auto;
    }

    .contact-card {
        padding: 28px 22px;
    }

    .contact-card-icon {
        width: 58px;
        height: 58px;
        font-size: 26px;
    }

    .contact-card h3 {
        font-size: 22px;
    }

    .contact-card-btn {
        width: 100%;
    }

    .hero-image {
        width: 90%;
    }
}

/* Large Mobile */
@media (max-width: 767px) {

    .contact-grid-section {
        padding: 50px 0;
    }

    .contact-grid {
        gap: 20px;
    }

    .contact-card {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .contact-card h3 {
        font-size: 20px;
    }

    .contact-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .contact-card-icon {
        width: 54px;
        height: 54px;
        font-size: 24px;
        margin-bottom: 16px;
    }

    .contact-detail-item {
        font-size: 14px;
    }

    .contact-card-btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    .hero-image {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 575px) {

    .contact-grid-section {
        padding: 40px 0;
    }

    .contact-card {
        padding: 22px 18px;
    }

    .contact-card h3 {
        font-size: 19px;
    }

    .contact-card p {
        font-size: 14px;
    }

    .contact-detail-item {
        gap: 10px;
        font-size: 13px;
        word-break: break-word;
    }

    .contact-detail-item a,
    .contact-detail-item span {
        word-break: break-word;
    }

    .contact-card-btn {
        width: 100%;
        padding: 13px 18px;
        font-size: 14px;
    }

    .contact-card .badge {
        font-size: 11px;
        padding: 5px 14px;
    }
}

/* Small Mobile */
@media (max-width: 420px) {

    .contact-card {
        padding: 20px 16px;
    }

    .contact-card-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .contact-card p {
        font-size: 13px;
    }

    .contact-detail-item {
        font-size: 12px;
    }

    .contact-card-btn {
        font-size: 13px;
        padding: 12px 16px;
    }

    .contact-card .badge {
        font-size: 10px;
        padding: 5px 12px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {

    .contact-card {
        padding: 18px 14px;
    }

    .contact-card h3 {
        font-size: 17px;
    }

    .contact-card p {
        font-size: 12px;
    }

    .contact-detail-item {
        font-size: 11px;
        gap: 8px;
    }

    .contact-detail-item i {
        font-size: 12px;
    }

    .contact-card-btn {
        font-size: 12px;
        padding: 11px 14px;
    }

    .contact-card .badge {
        font-size: 9px;
        padding: 4px 10px;
    }
}

/* Ultra Small (320px) */
@media (max-width: 320px) {

    .contact-card {
        padding: 16px 12px;
    }

    .contact-card h3 {
        font-size: 16px;
    }

    .contact-card p {
        font-size: 11px;
    }

    .contact-detail-item {
        font-size: 10px;
    }

    .contact-card-btn {
        font-size: 11px;
        padding: 10px;
    }

    .contact-card .badge {
        font-size: 8px;
        padding: 4px 8px;
    }
}
