 /* --- Contact Hero Section --- */
    .hero-contact {
        position: relative;
        width: 100%;
        height: 60vh;
        min-height: 350px;
        /* Using a focused, professional workspace/site background */
        background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), 
                    url('https://images.unsplash.com/photo-1516216628859-9bccecad13ef?q=80&w=1920') center/cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #ffffff;
        padding: 0 20px;
        font-family: 'Inter', sans-serif;
    }

    .contact-hero-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-contact .hero-tag {
        font-size: 11px;
        font-weight: 800;
        color: #cb4154; /* Brand Red */
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: 15px;
        display: block;
    }

    .hero-contact h1 {
        font-size: clamp(28px, 5vw, 42px);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.02em;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    /* --- Contact Intro Section --- */
    .contact-intro {
        background-color: #ffffff;
        padding: 60px 0 20px;
        text-align: center;
        font-family: 'Inter', sans-serif;
    }

    .intro-wrapper {
        max-width: 700px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .contact-intro p {
        font-size: 18px;
        color: #555;
        line-height: 1.6;
        font-weight: 500;
    }

    /* Red Accent Line */
    .contact-intro::after {
        content: "";
        display: block;
        width: 40px;
        height: 4px;
        background-color: #cb4154;
        margin: 30px auto 0;
        border-radius: 2px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .hero-contact { height: 35vh; }
        .contact-intro p { font-size: 16px; }
    }


     /* --- Contact Intent Grid Styling --- */
    .contact-ux-section {
        padding: 80px 0;
        background-color: #ffffff;
        font-family: 'Inter', sans-serif;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .ux-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .ux-header h2 {
        font-size: 32px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.02em;
        color: #1a1a1a;
    }

    /* --- 4-Column Action Grid --- */
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .contact-action-card {
        background: #ffffff;
        padding: 40px 25px;
        border-radius: 8px;
        border: 1px solid #eee;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        text-decoration: none;
        text-align: left;
    }

    /* Brand Color Accents */
    .card-red { border-bottom: 4px solid #cb4154; }
    .card-blue { border-bottom: 4px solid #2d5a9e; }
    .card-green { border-bottom: 4px solid #27ae60; }
    .card-yellow { border-bottom: 4px solid #f1c40f; }

    .contact-action-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        border-color: #ddd;
    }

    .contact-action-card h3 {
        font-size: 18px;
        font-weight: 800;
        text-transform: uppercase;
        color: #1a1a1a;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .contact-action-card p {
        font-size: 13px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 30px;
        min-height: 60px;
    }

    /* CTA Link Styling */
    .action-cta {
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #cb4154; /* Brand Red */
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .contact-action-card:hover .action-cta {
        color: #1a1a1a;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .contact-grid { grid-template-columns: repeat(2, 1fr); }
    }

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

     /* --- Quote Form Block --- */
    .quote-form-section {
        padding: 100px 0;
        background-color: #f9f9f9;
        font-family: 'Inter', sans-serif;
    }

    .form-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 50px;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border: 1px solid #eee;
    }

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

    .form-header h2 {
        font-size: 28px;
        font-weight: 800;
        text-transform: uppercase;
        color: #1a1a1a;
        letter-spacing: -0.01em;
    }

    /* --- Form Grid --- */
    .saas-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

    .form-group.full-width {
        grid-column: span 2;
    }

    .saas-form label {
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
        color: #888;
    }

    .saas-form input, 
    .saas-form select, 
    .saas-form textarea {
        padding: 14px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        transition: border-color 0.3s;
        outline: none;
    }

    .saas-form input:focus, 
    .saas-form select:focus, 
    .saas-form textarea:focus {
        border-color: #cb4154; /* Brand Red */
    }

    /* --- CTA & Trust Line --- */
    .form-footer {
        grid-column: span 2;
        text-align: center;
        margin-top: 10px;
    }

    .btn-submit {
        width: 100%;
        background-color: #cb4154;
        color: #fff;
        padding: 18px;
        border: none;
        border-radius: 4px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        cursor: pointer;
        transition: 0.3s;
        font-size: 14px;
    }

    .btn-submit:hover {
        background-color: #1a1a1a;
    }

    .trust-line {
        margin-top: 25px;
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .trust-item {
        font-size: 12px;
        font-weight: 700;
        color: #666;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .trust-item span {
        color: #27ae60; /* Success Green for Checkmark */
        font-size: 14px;
    }

    @media (max-width: 600px) {
        .saas-form { grid-template-columns: 1fr; }
        .form-group.full-width { grid-column: span 1; }
        .form-footer { grid-column: span 1; }
        .form-container { padding: 30px 20px; }
        .trust-line { flex-direction: column; gap: 10px; align-items: flex-start; }
    }

      /* --- Urgent Contact Section --- */
    .urgent-contact-block {
        padding: 80px 0;
        background-color: #ffffff;
        font-family: 'Inter', sans-serif;
        border-top: 1px solid #eee;
    }

    .container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;
    }

    .urgent-contact-block h2 {
        font-size: 28px;
        font-weight: 800;
        text-transform: uppercase;
        color: #1a1a1a;
        margin-bottom: 20px;
    }

    .urgent-subtitle {
        font-size: 16px;
        color: #666;
        margin-bottom: 50px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    /* --- Contact Grid --- */
    .urgent-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .contact-method {
        padding: 40px 20px;
        background: #fdfdfd;
        border: 1px solid #eee;
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-method:hover {
        transform: translateY(-5px);
        border-color: #cb4154;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    /* Icon Styling */
    .method-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(203, 65, 84, 0.05);
        font-size: 20px;
    }

    /* Special Highlight for WhatsApp */
    .method-whatsapp {
        background: #e8f5e9; /* Light green background for familiarity */
        border-color: #c8e6c9;
    }
    
    .method-whatsapp:hover {
        background: #25D366; /* Official WhatsApp Green on Hover */
        border-color: #25D366;
    }

    .method-whatsapp:hover .method-icon,
    .method-whatsapp:hover h4,
    .method-whatsapp:hover p {
        color: #fff;
    }

    .contact-method h4 {
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #1a1a1a;
        margin-bottom: 10px;
    }

    .contact-method p {
        font-size: 16px;
        font-weight: 700;
        color: #cb4154;
    }

    @media (max-width: 768px) {
        .urgent-grid { grid-template-columns: 1fr; }
        .contact-method { padding: 30px; }
    }


     /* --- Office & Service Locations Styling --- */
    .locations-section {
        padding: 100px 0;
        background-color: #f9f9f9;
        font-family: 'Inter', sans-serif;
        color: #1a1a1a;
    }

    .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .loc-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .loc-header h2 {
        font-size: 32px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.02em;
    }

    /* --- Locations Flex/Grid --- */
    .loc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .loc-card {
        background: #ffffff;
        padding: 50px;
        border-radius: 8px;
        border: 1px solid #eee;
        transition: 0.3s;
    }

    .loc-card:hover {
        border-color: #cb4154;
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    }

    .loc-card h3 {
        font-size: 14px;
        font-weight: 800;
        text-transform: uppercase;
        color: #cb4154; /* Brand Red */
        margin-bottom: 25px;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .loc-card h3::before {
        content: "📍";
        font-size: 18px;
    }

    .loc-details h4 {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .loc-details p {
        font-size: 15px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    /* Service Coverage List */
    .coverage-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        list-style: none;
        padding: 0;
    }

    .coverage-tag {
        background: #f0f0f0;
        padding: 6px 15px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 4px;
        color: #444;
    }

    .map-link {
        display: inline-block;
        margin-top: 20px;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        color: #1a1a1a;
        text-decoration: none;
        border-bottom: 2px solid #cb4154;
        padding-bottom: 4px;
    }

    @media (max-width: 768px) {
        .loc-grid { grid-template-columns: 1fr; }
        .loc-card { padding: 35px 25px; }
    }


     /* --- Post-Contact Process Styling --- */
    .post-contact-process {
        padding: 100px 0;
        background-color: #ffffff;
        font-family: 'Inter', sans-serif;
        color: #1a1a1a;
    }

    .container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .process-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .process-header h2 {
        font-size: 32px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.02em;
    }

    /* --- Timeline Logic --- */
    .timeline-wrapper {
        position: relative;
        padding-left: 60px;
    }

    /* Vertical Line */
    .timeline-wrapper::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #eee;
    }

    .timeline-item {
        position: relative;
        margin-bottom: 50px;
    }

    .timeline-item:last-child { margin-bottom: 0; }

    /* The Dot */
    .timeline-dot {
        position: absolute;
        left: -51px;
        top: 0;
        width: 24px;
        height: 24px;
        background: #fff;
        border: 4px solid #cb4154; /* Brand Red */
        border-radius: 50%;
        z-index: 2;
    }

    .timeline-content h3 {
        font-size: 18px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .timeline-content p {
        font-size: 15px;
        color: #666;
        line-height: 1.6;
    }

    /* Highlight for the first step speed */
    .speed-tag {
        font-size: 10px;
        background: rgba(203, 65, 84, 0.1);
        color: #cb4154;
        padding: 4px 10px;
        border-radius: 4px;
        letter-spacing: 1px;
    }

    @media (max-width: 600px) {
        .timeline-wrapper { padding-left: 45px; }
        .timeline-dot { left: -36px; width: 20px; height: 20px; }
    }

      /* --- Final Reinforcement Section --- */
    .contact-final-cta {
        padding: 100px 0;
        background-color: #111111; /* Deep Industrial Black */
        background-image: 
            radial-gradient(circle, rgba(203, 65, 84, 0.1) 1px, transparent 1px);
        background-size: 30px 30px;
        color: #ffffff;
        font-family: 'Inter', sans-serif;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    /* Subtle Border Top Glow */
    .contact-final-cta::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #cb4154, transparent);
    }

    .container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .contact-final-cta h2 {
        font-size: clamp(28px, 4vw, 38px);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.02em;
        margin-bottom: 25px;
        line-height: 1.1;
    }

    .contact-final-cta p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 50px;
        line-height: 1.6;
    }

    /* --- CTA Button Group --- */
    .cta-btn-group {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .btn-final {
        padding: 18px 40px;
        text-decoration: none;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 1.5px;
        border-radius: 4px;
        transition: all 0.3s ease;
        display: inline-block;
        min-width: 220px;
    }

    .btn-final-red {
        background-color: #cb4154; /* Brand Red */
        color: #ffffff;
        border: 2px solid #cb4154;
    }

    .btn-final-outline {
        background-color: transparent;
        color: #ffffff;
        border: 2px solid #ffffff;
    }

    /* Hover Effects */
    .btn-final-red:hover {
        background-color: #ffffff;
        color: #111111;
        border-color: #ffffff;
    }

    .btn-final-outline:hover {
        background-color: #ffffff;
        color: #111111;
    }

    /* Mobile Tweaks */
    @media (max-width: 600px) {
        .cta-btn-group { flex-direction: column; align-items: center; }
        .btn-final { width: 100%; }
        .contact-final-cta { padding: 80px 0; }
    }