/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Page Header with Hero Image */
.page-header {
    background-image: url('../images/beach-fun.JPG');
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.page-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(44, 90, 160, 0.15);
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(44, 90, 160, 0.25);
    border-top-color: #f39c12;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2c5aa0, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    transform: scale(1.1) rotate(5deg);
}

.contact-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.contact-card p strong {
    color: #2c5aa0;
    font-size: 1.1rem;
}

.contact-card .note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin-top: 1rem;
}

.whatsapp-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    margin-right: 0.5rem;
}

/* Booking Form Section */
.booking-form-section {
    padding: 100px 0;
    background: #ffffff;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(44, 90, 160, 0.15);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    position: relative;
}

.form-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    border-radius: 2px;
}

.form-header p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1.5rem;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2.5rem;
}

.form-row {
    display: contents;
}

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

.form-group label {
    font-size: 1rem;
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

.submit-btn {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #2c5aa0, #3498db);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.3);
}

.submit-btn i {
    margin-right: 0.8rem;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    margin-top: 1rem;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.location-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    position: relative;
}

.location-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    border-radius: 2px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-info h3 {
    font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.direction-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
}

.direction-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.15);
}

.direction-item i {
    font-size: 2rem;
    color: #f39c12;
    min-width: 40px;
}

.direction-item h4 {
    font-size: 1.2rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.direction-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.map-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 90, 160, 0.2);
    height: 100%;
    min-height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(44, 90, 160, 0.95);
    padding: 2rem 3rem;
    border-radius: 15px;
    text-align: center;
    color: #ffffff;
}

.map-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

.map-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
}

/* Operating Hours Section */
.operating-hours {
    padding: 100px 0;
    background: #ffffff;
}

.operating-hours h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    position: relative;
}

.operating-hours h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    border-radius: 2px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hours-card {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05), rgba(52, 152, 219, 0.05));
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border-left: 4px solid #f39c12;
    transition: all 0.4s ease;
}

.hours-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(44, 90, 160, 0.15);
}

.hours-card i {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 1.5rem;
}

.hours-card h3 {
    font-size: 1.3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.hours-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.hours-card p strong {
    color: #2c5aa0;
}

.hours-card .note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.15);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-item h3 i {
    color: #f39c12;
    font-size: 1.5rem;
}

.faq-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Social Media Section */
.social-section {
    padding: 100px 0;
    background: #ffffff;
}

.social-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    position: relative;
}

.social-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    border-radius: 2px;
}

.social-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 3rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(44, 90, 160, 0.15);
    text-decoration: none;
    transition: all 0.4s ease;
    min-width: 150px;
}

.social-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(44, 90, 160, 0.25);
}

.social-link.facebook {
    border-top: 4px solid #1877F2;
}

.social-link.instagram {
    border-top: 4px solid #E4405F;
}

.social-link.whatsapp {
    border-top: 4px solid #25D366;
}

.social-link.twitter {
    border-top: 4px solid #1DA1F2;
}

.social-link i {
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.social-link.facebook i {
    color: #1877F2;
}

.social-link.instagram i {
    color: #E4405F;
}

.social-link.whatsapp i {
    color: #25D366;
}

.social-link.twitter i {
    color: #1DA1F2;
}

.social-link:hover i {
    transform: scale(1.2);
}

.social-link span {
    font-size: 1.1rem;
    color: #2c5aa0;
    font-weight: 600;
}

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

    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .form-container {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .page-header {
        min-height: 40vh;
        padding: 80px 20px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booking-form {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem 1.5rem;
        max-width: 100%;
        margin: 0 1rem;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .form-header p {
        font-size: 1rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        max-width: 100%;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        flex-direction: column;
        align-items: stretch;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-section,
    .booking-form-section,
    .location-section,
    .operating-hours,
    .faq-section,
    .social-section {
        padding: 60px 0;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .direction-item {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        min-height: 35vh;
        padding: 60px 15px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .form-container {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
        border-radius: 15px;
    }

    .form-header h2 {
        font-size: 1.6rem;
    }

    .form-header p {
        font-size: 0.9rem;
    }

    .booking-form {
        gap: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 25px;
    }

    .form-note {
        font-size: 0.8rem;
    }

    .contact-card {
        padding: 1.5rem 1rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

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

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .hours-card,
    .faq-item {
        padding: 1.5rem 1rem;
    }

    .direction-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .direction-item i {
        font-size: 1.5rem;
    }

    .contact-info-section,
    .booking-form-section,
    .location-section,
    .operating-hours,
    .faq-section,
    .social-section {
        padding: 40px 0;
    }

    .container {
        padding: 0 1rem;
    }
}

/* =============================================================== */
/*  Unified Contact Hub                                              */
/*  A single split-panel card combining contact channels (left)      */
/*  and the short-inquiry form (right). Replaces the previous        */
/*  stacked "info-cards + nested form" layout.                       */
/* =============================================================== */

.contact-hub {
    padding: 90px 0;
    background:
        radial-gradient(1200px 600px at 90% -10%, rgba(52, 152, 219, 0.08), transparent 60%),
        radial-gradient(900px 500px at -10% 110%, rgba(243, 156, 18, 0.07), transparent 60%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-hub-card {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    background: #ffffff;
    border-radius: 24px;
    box-shadow:
        0 30px 80px -30px rgba(44, 90, 160, 0.35),
        0 6px 20px -10px rgba(44, 90, 160, 0.15);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    isolation: isolate;
}

/* ------------------------------------------------------------- */
/*  LEFT: branded gradient panel with channel list               */
/* ------------------------------------------------------------- */
.contact-hub-info {
    position: relative;
    color: #ffffff;
    background:
        linear-gradient(160deg, #1f3f7a 0%, #2c5aa0 45%, #3498db 100%);
    padding: 56px 44px 44px;
    overflow: hidden;
}

.contact-hub-info-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.decor-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.45;
}

.decor-blob-a {
    width: 320px;
    height: 320px;
    top: -80px;
    right: -100px;
    background: radial-gradient(circle, #f39c12 0%, transparent 70%);
}

.decor-blob-b {
    width: 280px;
    height: 280px;
    bottom: -120px;
    left: -100px;
    background: radial-gradient(circle, #25d366 0%, transparent 70%);
    opacity: 0.3;
}

.contact-hub-info-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-hub-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    width: fit-content;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.contact-hub-info h2 {
    font-size: 2.1rem;
    line-height: 1.15;
    margin: 18px 0 12px;
    color: #ffffff;
    font-weight: 700;
}

.contact-hub-lede {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 32px;
    max-width: 38ch;
}

/* Channel rows, links, pills & social icons live in css/gradient-aside.css */

/* ------------------------------------------------------------- */
/*  RIGHT: form panel (no nested card wrapper)                   */
/* ------------------------------------------------------------- */
.contact-hub-form {
    padding: 56px 48px 48px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.contact-hub-form-header {
    margin-bottom: 28px;
}

.contact-hub-form-header h3 {
    font-size: 1.7rem;
    color: #1f3f7a;
    margin: 0 0 6px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-hub-form-header p {
    font-size: 0.92rem;
    color: #6b7a90;
    margin: 0;
    line-height: 1.55;
}

.contact-hub-form-header p a {
    color: #2c5aa0;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.contact-hub-form-header p a:hover {
    color: #3498db;
}

/* Honeypot trap: visually hidden but still in DOM */
.hp-trap {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* The form itself: 2-col responsive grid that supports .full-width spans */
.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

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

.contact-form .form-group label {
    font-size: 0.86rem;
    color: #1f3f7a;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    padding: 0.85rem 1rem;
    border: 1.5px solid #e3e8f0;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 0.95rem;
    color: #1f2d3d;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
    width: 100%;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #aab4c2;
}

.contact-form .form-group input:hover,
.contact-form .form-group textarea:hover {
    border-color: #cdd6e2;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.12);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.55;
}

.contact-form .optional-tag {
    color: #95a5a6;
    font-weight: 500;
    font-size: 0.78em;
    margin-left: 6px;
    padding: 1px 8px;
    background: #eef2f7;
    border-radius: 999px;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

.contact-form .form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.contact-form .submit-btn {
    margin-top: 0;
    padding: 0.95rem 2rem;
    font-size: 0.98rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2c5aa0, #3498db);
    box-shadow: 0 12px 24px -10px rgba(44, 90, 160, 0.55);
}

.contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px -10px rgba(44, 90, 160, 0.6);
}

.contact-form .form-note {
    margin: 0;
    text-align: right;
    font-size: 0.82rem;
    color: #8a96a8;
}

/* ------------------------------------------------------------- */
/*  Responsive                                                    */
/* ------------------------------------------------------------- */
@media (max-width: 992px) {
    .contact-hub {
        padding: 60px 0;
    }

    .contact-hub-card {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .contact-hub-info {
        padding: 44px 32px 36px;
    }

    .contact-hub-info h2 {
        font-size: 1.8rem;
    }

    .contact-hub-form {
        padding: 40px 32px;
    }
}

@media (max-width: 600px) {
    .contact-hub {
        padding: 40px 0;
    }

    .contact-hub-card {
        margin: 0 12px;
        border-radius: 18px;
    }

    .contact-hub-info {
        padding: 36px 24px 28px;
    }

    .contact-hub-info h2 {
        font-size: 1.55rem;
    }

    .contact-hub-form {
        padding: 32px 24px;
    }

    .contact-hub-form-header h3 {
        font-size: 1.4rem;
    }

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

    .contact-form .form-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .contact-form .submit-btn {
        width: 100%;
    }

    .contact-form .form-note {
        text-align: center;
    }
}
