/* ============================================
   REDDY BOOK CONTACT PAGE STYLES
   Red & White Theme - Consistent with Casino & FAQ Pages
   ============================================ */

/* Contact Page Specific Styles */
.rb-contact-page {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff5f7 100%);
    min-height: 100vh;
}

/* 1. HERO SECTION */
.rb-contact-hero {
    background: linear-gradient(rgba(193, 9, 48, 0.9), rgba(156, 7, 39, 0.95)), 
                url('../assets/contact-bg.jpg') center/cover no-repeat;
    padding: 100px 0 80px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rb-contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('../assets/pattern.png') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.rb-contact-hero .container {
    position: relative;
    z-index: 2;
}

.rb-contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 8px 25px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rb-contact-live-pulse {
    width: 10px;
    height: 10px;
    background-color: #ffcc00;
    border-radius: 50%;
    animation: contactPulse 1.5s infinite;
}

@keyframes contactPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 204, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
}

.rb-contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.rb-contact-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.rb-contact-hero-subtitle strong {
    color: #ffcc00;
}

.rb-contact-hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.rb-contact-hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.rb-contact-hero-feature:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.rb-contact-hero-feature i {
    font-size: 36px;
    color: #ffcc00;
}

.rb-contact-hero-feature span {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.rb-contact-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.rb-contact-cta {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #1c2b36;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.rb-contact-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 204, 0, 0.4);
    background: linear-gradient(135deg, #ff9900, #ffcc00);
}

.rb-contact-whatsapp {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffcc00;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.rb-contact-whatsapp:hover {
    background: #ffcc00;
    color: #1c2b36;
    transform: translateY(-3px);
}

.rb-contact-hero-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: #ffcc00;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rb-contact-hero-note i {
    color: #ffcc00;
    font-size: 18px;
    flex-shrink: 0;
}

/* 2. CONTACT CHANNELS SECTION */
.rb-contact-channels {
    padding: 80px 0;
    background-color: #ffffff;
}

.rb-contact-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.rb-contact-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1c2b36;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.rb-contact-section-header h2 i {
    color: #c10930;
}

.rb-contact-section-header p {
    font-size: 18px;
    color: #7a2a3c;
    font-style: italic;
}

.rb-contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.rb-contact-channel-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rb-contact-channel-card.highlight {
    border-color: #c10930;
    box-shadow: 0 15px 40px rgba(193, 9, 48, 0.15);
}

.rb-contact-channel-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c10930, #e11245);
}

.rb-contact-channel-card.highlight::before {
    background: linear-gradient(90deg, #ffcc00, #ff9900);
    height: 8px;
}

.rb-contact-channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.rb-contact-channel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.rb-contact-channel-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(193, 9, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rb-contact-channel-card.highlight .rb-contact-channel-icon {
    background-color: rgba(255, 204, 0, 0.2);
}

.rb-contact-channel-icon i {
    font-size: 32px;
    color: #c10930;
}

.rb-contact-channel-card.highlight .rb-contact-channel-icon i {
    color: #ff9900;
}

.rb-contact-channel-badge {
    background-color: #ffcc00;
    color: #1c2b36;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rb-contact-channel-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1c2b36;
    margin-bottom: 15px;
}

.rb-contact-channel-desc {
    font-size: 16px;
    color: #5b6b7a;
    line-height: 1.6;
    margin-bottom: 25px;
}

.rb-contact-channel-info {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.rb-contact-channel-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e0e0e0;
}

.rb-contact-channel-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.rb-contact-channel-detail i {
    color: #c10930;
    font-size: 18px;
    width: 24px;
}

.rb-contact-detail-label {
    font-size: 14px;
    color: #7a2a3c;
    display: block;
    margin-bottom: 4px;
}

.rb-contact-detail-value {
    font-size: 16px;
    font-weight: 600;
    color: #1c2b36;
    display: block;
}

.rb-contact-channel-actions {
    display: flex;
    gap: 15px;
}

.rb-contact-channel-btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rb-contact-channel-btn.primary {
    background-color: #c10930;
    color: white;
}

.rb-contact-channel-btn.primary:hover {
    background-color: #9e0726;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(193, 9, 48, 0.3);
}

.rb-contact-channel-btn.secondary {
    background-color: #f0f0f0;
    color: #1c2b36;
    border: 1px solid #ddd;
}

.rb-contact-channel-btn.secondary:hover {
    background-color: #e0e0e0;
    transform: translateY(-3px);
}

/* 3. CONTACT FORM SECTION */
.rb-contact-form-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.rb-contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.rb-contact-form-intro {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #c10930;
}

.rb-contact-form-benefits {
    margin: 40px 0;
}

.rb-contact-form-benefit {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.rb-contact-form-benefit:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.rb-contact-form-benefit i {
    width: 50px;
    height: 50px;
    background-color: rgba(193, 9, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c10930;
    font-size: 22px;
    flex-shrink: 0;
}

.rb-contact-form-benefit h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 5px;
}

.rb-contact-form-benefit p {
    font-size: 14px;
    color: #5b6b7a;
    line-height: 1.5;
    margin: 0;
}

.rb-contact-form-note {
    background-color: #fff5f7;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #ffcc00;
}

.rb-contact-form-note i {
    color: #ffcc00;
    font-size: 20px;
    margin-right: 10px;
    float: left;
}

.rb-contact-form-note p {
    font-size: 14px;
    color: #7a2a3c;
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
}

.rb-contact-form-container {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #c10930;
}

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

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

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

.rb-contact-form label {
    font-size: 15px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rb-contact-form label i {
    color: #c10930;
    font-size: 16px;
}

.rb-required {
    color: #c10930;
    font-weight: 700;
}

.rb-contact-form input,
.rb-contact-form select,
.rb-contact-form textarea {
    padding: 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 16px;
    color: #1c2b36;
    background-color: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.rb-contact-form input:focus,
.rb-contact-form select:focus,
.rb-contact-form textarea:focus {
    outline: none;
    border-color: #c10930;
    box-shadow: 0 0 0 3px rgba(193, 9, 48, 0.1);
}

.rb-contact-form input::placeholder,
.rb-contact-form textarea::placeholder {
    color: #a0a0a0;
}

.rb-contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23c10930' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px;
}

.rb-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-weight: normal;
    margin-top: 10px;
}

.rb-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.rb-checkbox-label input[type="checkbox"] {
    display: none;
}

.rb-checkbox-label input[type="checkbox"]:checked + .rb-checkbox-custom {
    background-color: #c10930;
    border-color: #c10930;
}

.rb-checkbox-label input[type="checkbox"]:checked + .rb-checkbox-custom::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.rb-checkbox-text {
    font-size: 14px;
    color: #5b6b7a;
    line-height: 1.5;
    flex: 1;
}

.rb-checkbox-text a {
    color: #c10930;
    text-decoration: none;
    font-weight: 600;
}

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

.rb-form-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.rb-submit-btn,
.rb-reset-btn {
    flex: 1;
    padding: 18px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rb-submit-btn {
    background: linear-gradient(135deg, #c10930, #e11245);
    color: white;
}

.rb-submit-btn:hover {
    background: linear-gradient(135deg, #9e0726, #c10930);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(193, 9, 48, 0.3);
}

.rb-reset-btn {
    background-color: #f0f0f0;
    color: #5b6b7a;
    border: 2px solid #ddd;
}

.rb-reset-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-3px);
}

/* 4. SUPPORT DEPARTMENTS */
.rb-support-departments {
    padding: 80px 0;
    background-color: #ffffff;
}

.rb-departments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rb-department-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-top: 5px solid #c10930;
    transition: all 0.3s ease;
    text-align: center;
}

.rb-department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.rb-department-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(193, 9, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.rb-department-icon i {
    color: #c10930;
    font-size: 32px;
}

.rb-department-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1c2b36;
    margin-bottom: 15px;
}

.rb-department-card p {
    font-size: 15px;
    color: #5b6b7a;
    line-height: 1.6;
    margin-bottom: 25px;
}

.rb-department-card p strong {
    color: #c10930;
}

.rb-department-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
}

.rb-department-contact span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #7a2a3c;
}

.rb-department-contact i {
    color: #c10930;
    font-size: 16px;
}

/* 5. COMMON ISSUES SECTION */
.rb-common-issues {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.rb-issues-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.rb-issue-item {
    background-color: #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rb-issue-question {
    width: 100%;
    padding: 25px 30px;
    background-color: #ffffff;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1c2b36;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.rb-issue-question:hover {
    background-color: #f9f9f9;
}

.rb-issue-question i {
    color: #c10930;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.rb-issue-item.active .rb-issue-question i {
    transform: rotate(180deg);
}

.rb-issue-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rb-issue-item.active .rb-issue-answer {
    padding: 0 30px 30px;
    max-height: 1000px;
}

.rb-issue-answer p {
    font-size: 16px;
    color: #4a1c28;
    line-height: 1.6;
    margin-bottom: 15px;
}

.rb-issue-answer p strong {
    color: #c10930;
}

.rb-issue-answer ol,
.rb-issue-answer ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.rb-issue-answer li {
    font-size: 15px;
    color: #5b6b7a;
    line-height: 1.6;
    margin-bottom: 8px;
}

.rb-issues-note {
    background-color: #fff5f7;
    border-radius: 12px;
    padding: 25px;
    margin-top: 40px;
    border-left: 5px solid #ffcc00;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.rb-issues-note i {
    color: #ffcc00;
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 5px;
}

.rb-issues-note p {
    font-size: 16px;
    color: #7a2a3c;
    line-height: 1.6;
    margin: 0;
}

.rb-issues-note p strong {
    color: #c10930;
}

/* 6. BUSINESS HOURS SECTION */
.rb-business-hours {
    padding: 80px 0;
    background-color: #ffffff;
}

.rb-business-hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.rb-business-hours-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1c2b36;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rb-business-hours-info h2 i {
    color: #c10930;
}

.rb-business-hours-info p {
    font-size: 16px;
    color: #5b6b7a;
    margin-bottom: 40px;
    line-height: 1.6;
}

.rb-hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.rb-hour-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
    border-left: 5px solid #c10930;
    transition: all 0.3s ease;
}

.rb-hour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.rb-hour-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(193, 9, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.rb-hour-icon i {
    color: #c10930;
    font-size: 28px;
}

.rb-hour-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1c2b36;
    margin-bottom: 15px;
}

.rb-hour-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rb-hour-time {
    font-size: 16px;
    font-weight: 600;
    color: #c10930;
}

.rb-hour-response {
    font-size: 14px;
    color: #7a2a3c;
}

.rb-hours-note-card {
    background-color: #fff5f7;
    border-radius: 12px;
    padding: 35px 30px;
    border: 2px solid #c10930;
    height: 100%;
}

.rb-hours-note-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1c2b36;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rb-hours-note-card h4 i {
    color: #ff9900;
}

.rb-hours-note-card ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.rb-hours-note-card li {
    font-size: 15px;
    color: #5b6b7a;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.rb-hours-note-card li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #ff9900;
    font-weight: bold;
    font-size: 18px;
}

/* 7. CTA SECTION */
.rb-contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #c10930 0%, #9e0726 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rb-contact-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('../assets/pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.rb-contact-cta .container {
    position: relative;
    z-index: 2;
}

.rb-contact-cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.rb-contact-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 8px 25px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rb-contact-cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.rb-contact-cta p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
}

.rb-contact-cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.rb-contact-cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.rb-contact-cta-feature i {
    color: #ffcc00;
}

.rb-contact-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.rb-contact-cta-main {
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #1c2b36;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.rb-contact-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 204, 0, 0.4);
    background: linear-gradient(135deg, #ff9900, #ffcc00);
}

.rb-contact-phone {
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rb-contact-phone:hover {
    background-color: #ffffff;
    color: #c10930;
    transform: translateY(-3px);
}

.rb-contact-cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ffcc00;
}

.rb-contact-cta-note i {
    color: #ffcc00;
    font-size: 20px;
    flex-shrink: 0;
}

.rb-contact-cta-note span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

/* FOOTER STYLES */
.site-footer .footer-contact-mini {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-mini p {
    font-size: 14px;
    color: #e5a3b2;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-mini i {
    color: #ffcc00;
    font-size: 16px;
    width: 20px;
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
    .rb-contact-channels-grid,
    .rb-departments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rb-contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .rb-business-hours-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .rb-contact-hero {
        padding: 80px 0 40px;
    }
    
    .rb-contact-hero h1 {
        font-size: 36px;
    }
    
    .rb-contact-hero-subtitle {
        font-size: 18px;
    }
    
    .rb-contact-hero-features {
        gap: 20px;
    }
    
    .rb-contact-hero-feature {
        min-width: 100px;
        padding: 15px;
    }
    
    .rb-contact-section-header h2 {
        font-size: 30px;
    }
    
    .rb-contact-form-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .rb-contact-hero {
        padding: 60px 0 30px;
    }
    
    .rb-contact-hero h1 {
        font-size: 32px;
    }
    
    .rb-contact-hero-subtitle {
        font-size: 16px;
    }
    
    .rb-contact-hero-features {
        gap: 15px;
    }
    
    .rb-contact-hero-feature {
        min-width: 80px;
        padding: 12px;
    }
    
    .rb-contact-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .rb-contact-cta,
    .rb-contact-whatsapp {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
    
    .rb-contact-channels-grid,
    .rb-departments-grid,
    .rb-hours-grid {
        grid-template-columns: 1fr;
    }
    
    .rb-contact-channel-actions,
    .rb-form-actions {
        flex-direction: column;
    }
    
    .rb-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rb-contact-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .rb-contact-cta-main,
    .rb-contact-phone {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .rb-contact-cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .rb-contact-cta-note {
        flex-direction: column;
        text-align: center;
    }
    
    .rb-issues-note {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .rb-contact-hero h1 {
        font-size: 28px;
    }
    
    .rb-contact-hero-subtitle {
        font-size: 14px;
    }
    
    .rb-contact-hero-feature {
        min-width: 70px;
        padding: 10px;
    }
    
    .rb-contact-hero-feature i {
        font-size: 28px;
    }
    
    .rb-contact-hero-feature span {
        font-size: 14px;
    }
    
    .rb-contact-section-header h2 {
        font-size: 26px;
    }
    
    .rb-contact-form-container {
        padding: 20px;
    }
    
    .rb-contact-channel-card {
        padding: 25px 20px;
    }
    
    .rb-issue-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .rb-contact-cta h2 {
        font-size: 30px;
    }
    
    .rb-contact-cta p {
        font-size: 16px;
    }
}