/* PAGE CONFIGURATION - Contact Page */
      :root {
        --header-height: 80px;
        --header-height-mobile: 60px;
        --hero-padding-top: 180px;
        --hero-min-height: 55vh;
        --page-padding-top: 80px;
      }

      #custom-container-contact-page {
        margin-top: 0 !important;
        padding-top: 0 !important;
      }

      /* Container */
      #custom-container-contact-page .cms-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
      }

      /* Hero Section - Matching marketing-strategy style */
      .custom-hero-section {
        padding: 80px 0 80px 0;
        position: relative;
        overflow: hidden;
        margin-top: -80px;
        padding-top: 200px;
        text-align: center;
      }

      .custom-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #37a3a1, #2a7c7a);
        z-index: 0;
      }

      @media (max-width: 1024px) {
        .hero-bg {
          background-attachment: scroll !important;
          background-size: cover !important;
          background-position: center center !important;
        }
      }

      @media (max-width: 768px) {
        .custom-hero-section {
          margin-top: -60px;
          padding-top: 160px;
        }
      }

      .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.6;
        background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=2000');
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
      }

      @media (min-width: 1025px) {
        .hero-bg {
          background-attachment: fixed;
        }
      }

      .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(71, 94, 145, 0.5), rgba(42, 58, 90, 0.6));
        z-index: 1;
      }

      .custom-hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .service-icon-hero {
        width: 80px;
        height: 80px;
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: var(--text-3xl);
        margin: 0 auto 2rem;
      }

      .service-icon-hero i {
        font-size: 2rem;
      }

      .custom-hero-title {
        font-size: var(--text-5xl);
        font-weight: var(--font-weight-bold);
        color: white;
        margin-bottom: 1.5rem;
        line-height: 1.1;
      }

      @media (max-width: 768px) {
        .custom-hero-title {
          font-size: var(--text-4xl);
        }
      }

      .custom-hero-subtitle {
        font-size: var(--text-xl);
        color: rgba(255, 255, 255, 0.9);
        max-width: 700px;
        margin: 0 auto 2.5rem;
        line-height: 1.7;
      }

      .hero-cta {
        display: inline-block;
        padding: 1rem 2.5rem;
        font-weight: var(--font-weight-semibold);
        text-decoration: none !important;
        border-radius: 0.5rem;
        transition: all 0.3s;
      }

      .hero-cta:hover,
      .hero-cta:focus {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 210, 31, 0.3);
        text-decoration: none !important;
      }

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

      .custom-contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
      }

      .custom-contact-info {
        background: #f8f9fa;
        padding: 40px;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
      }

      .custom-contact-info h2 {
        font-size: 28px;
        font-weight: var(--font-weight-semibold);
        margin-bottom: 24px;
      }

      .custom-info-item {
        margin-bottom: 32px;
        padding-bottom: 24px;
        border-bottom: 1px solid #e5e7eb;
      }

      .custom-info-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
      }

      .custom-info-label {
        font-size: 16px;
        font-weight: var(--font-weight-semibold);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .custom-info-value {
        font-size: 16px;
        color: #6b7280;
        line-height: 24px;
      }

      .custom-form-section {
        background: white;
        padding: 40px;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      }

      .custom-form-section h2 {
        font-size: 28px;
        font-weight: var(--font-weight-semibold);
        margin-bottom: 16px;
      }

      .custom-form-description {
        font-size: 16px;
        color: #6b7280;
        margin-bottom: 32px;
        line-height: 24px;
      }

      /* Form Styling Override */
      .cms-form {
        max-width: none;
        margin: 0;
        padding: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
      }

      .cms-form-group {
        margin-bottom: 24px;
      }

      .cms-label {
        display: block;
        margin-bottom: 8px;
        font-weight: var(--font-weight-semibold);
        font-size: 14px;
      }

      .cms-input, .cms-textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        font-size: 16px;
        box-sizing: border-box;
        transition: border-color 0.15s ease, box-shadow 0.15s ease;
      }

      .cms-input:focus, .cms-textarea:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(55, 163, 161, 0.1);
      }

      .cms-textarea {
        resize: vertical;
        min-height: 120px;
      }

      .cms-button {
        display: inline-block;
        padding: 14px 32px;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: var(--font-weight-semibold);
        cursor: pointer;
        transition: background-color 0.15s ease, transform 0.15s ease;
        width: 100%;
      }

      .cms-button:hover {
        transform: translateY(-1px);
      }

      .cms-error-message {
        color: #ef4444;
        font-size: 14px;
        margin-top: 6px;
        display: none;
      }

      .cms-success-message {
        color: #10b981;
        font-size: 16px;
        margin-top: 16px;
        display: none;
        padding: 12px;
        background: #f0fdf4;
        border: 1px solid #bbf7d0;
        border-radius: 8px;
      }

      .custom-cta-section {
        padding: 5rem 20px;
        text-align: center;
        margin-top: 80px;
        background: var(--gradient-primary);
        position: relative;
        overflow: hidden;
      }

      .custom-cta-pattern {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.1;
        background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.3'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
      }

      .custom-cta-content {
        max-width: 700px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
      }

      .custom-cta-title {
        font-size: 32px;
        font-weight: var(--font-weight-bold);
        margin-bottom: 16px;
        color: white;
      }

      .custom-cta-text {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 32px;
        line-height: 28px;
      }

      .custom-cta-button {
        display: inline-block;
        padding: 16px 32px;
        text-decoration: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: var(--font-weight-semibold);
        transition: background-color 0.15s ease, transform 0.15s ease;
      }

      .custom-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 210, 31, 0.3);
        text-decoration: none;
      }

      /* Responsive Design */
      @media (max-width: 991px) {
        .custom-contact-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }

        .custom-hero-title {
          font-size: 36px;
          line-height: 44px;
        }

        .custom-contact-container {
          padding: 60px 20px;
        }

        .custom-contact-info,
        .custom-form-section {
          padding: 32px 24px;
        }
      }

      @media (max-width: 767px) {
        .service-icon-hero {
          width: 60px;
          height: 60px;
          font-size: var(--text-2xl);
        }

        .service-icon-hero i {
          font-size: 1.5rem;
        }

        .custom-hero-subtitle {
          font-size: var(--text-lg);
        }

        .hero-cta {
          padding: 0.875rem 2rem;
          font-size: var(--text-base);
        }

        .custom-contact-container {
          padding: 40px 16px;
        }

        .custom-contact-info,
        .custom-form-section {
          padding: 24px 20px;
        }

        .custom-cta-section {
          padding: 40px 16px;
          margin-top: 60px;
        }

        .custom-cta-title {
          font-size: 24px;
        }

        .custom-cta-text {
          font-size: 16px;
        }
      }
