body p{
    /* text-align: justify; */
    text-align: left !important;
}

/* ═══════════════════════════════════════════════════════════════ */
/* HERO SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.hero-section {
    min-height: 35vh;
    display: flex;
    align-items: center !important;
    justify-content: center;
    /* background: linear-gradient(135deg, rgb(13, 69, 44) 0%, rgba(26, 46, 39, 0.507) 100%); */
    background: var(--card-gradient);
    padding: 8rem 2rem 3rem;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
    margin-top: 70px;
    aspect-ratio: 1 / 0.20;
    background-image: 
        linear-gradient(
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0)
        ),
        url("../images/evokereformBanner.png");

    background-size: cover;
    background-position: center;
    /* background-repeat: no-repeat; */
    /* 🔑 KEY FIX */
    background-position: center;
}

.hero-content {
    max-width: 100%;
    width: 100%;
    font-family: var(--simple-font);
}
.hero-content p {
    color: var(--primary-dark);
    background: #f8cf6852;
    border-radius: 5px;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.5s both;
    line-height: 1.2;
    font-family: var(--simple-font);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.7s both;
    line-height: 1.6;
    font-family: var(--simple-font);
    text-align: center !important;
}

.hero-description {
    text-align: center !important;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.9s both;
    font-weight: 300;
    line-height: 1.6;
    font-family: var(--simple-font);
}


/* ═══════════════════════════════════════════════════════════════ */
/* CONTACT PAGE STYLES - CLEAN VERSION */
/* ═══════════════════════════════════════════════════════════════ */

.contact-main-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════ */
/* HERO SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 3rem;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-description {
    font-size: 1.05rem;
    color: #cac2b0;
    line-height: 1.8;
    margin-top: 1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* ═══════════════════════════════════════════════════════════════ */
/* MAP SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.map-section {
    padding: 3rem 2rem;
    max-width: 100%;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(241, 196, 15, 0.15);
    margin-bottom: 1.5rem;
}

.map-container iframe {
    border-radius: 15px !important;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.map-note {
    text-align: center;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1.5rem;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════════ */
/* CONTACT SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.contact-section {
    padding: 4rem 2rem;
    max-width: 100%;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.appointment-card {
    background: rgba(13, 69, 44, 0.8);
    border: none;
    border-left: 4px solid #ffd700;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: justify;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out;
    color: #cac2b0;
    box-shadow: 0 10px 30px rgba(13, 69, 44, 0.5);
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.info-card {
    background: rgba(13, 69, 44, 0.8);
    border: none;
    border-left: 4px solid #ffd700;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 10px 30px rgba(13, 69, 44, 0.5);
    
}

.info-card:nth-child(1) { animation-delay: 0.5s; }
.info-card:nth-child(2) { animation-delay: 0.6s; }
.info-card:nth-child(3) { animation-delay: 0.7s; }

.contact-form-wrapper:hover, .info-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg,
  #4cb284 10%,
  #146440 30%,
  #4cb284 100%
);
    border-left-color: #ffed4e;
    box-shadow: 0 15px 40px rgba(13, 69, 44, 0.7);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.info-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
}

.info-card h3 {
    font-size: 1.4rem;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-card p {
    color: #cac2b0;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    text-align: center !important;
}

.info-card p a {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.info-card p a:hover {
    text-decoration: underline;
}

.card-subtitle {
    font-size: 0.9rem !important;
    color: #cac2b0 !important;
    margin-top: 0.8rem !important;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════ */
/* CONTACT FORM */
/* ═══════════════════════════════════════════════════════════════ */

.contact-form-wrapper {
    /* background: rgba(13, 69, 44, 0.8); */
    background: rgba(13, 69, 44);
    border: none;
    border-left: 4px solid #ffd700;
    padding: 3rem;
    border-radius: 15px;
    animation: fadeInUp 1s ease-out 0.7s both;
    box-shadow: 0 10px 30px rgba(13, 69, 44, 0.5);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    /* color: #cac2b0; */
    color: #fbfbfb;
    margin-bottom: 0.6rem;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0.95rem 1.2rem;
    border-radius: 8px;
    color: #cac2b0;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(202, 194, 176, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
}

.form-group select option {
    background: #1a2e27;
    color: #cac2b0;
    padding: 0.8rem;
    line-height: 1.6;
    border: none;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0;
    accent-color: var(--accent-gold);
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 400;
    font-size: 0.95rem;
    cursor: pointer;
    color: #cac2b0;
}

.submit-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #D4AF37 100%);
    color: #234031;
    padding: 1.1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(241, 196, 15, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(241, 196, 15, 0.5);
    background: linear-gradient(135deg, #FDB931 0%, #D4AF37 50%, #FFD700 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.form-status {
    margin-top: 1.5rem;
    text-align: center;
}

.success-message {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #81c784;
    padding: 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 500;
    animation: fadeIn 0.5s ease;
}

.form-error {
    color: #ef5350;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: block;
    min-height: 1.2rem;
}

.form-intro {
    color: #cac2b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center !important;
}

/* ═══════════════════════════════════════════════════════════════ */
/* TOP CONTACT CARDS SECTION - NEW LAYOUT */
/* ═══════════════════════════════════════════════════════════════ */

.contact-cards-top {
    padding: 1rem 2rem 2rem 2rem;
    width: 100%;
    animation: fadeInUp 1s ease-out both;
    /* margin-top: 2rem; */
    max-width: 100%;
}

.cards-form-wrapper {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    /* grid-template-columns: 1fr; */
    gap: 3rem;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin-bottom: 3rem;
}

/* .appointment-info-card {
    background: rgba(13, 69, 44, 0.8) !important;
    border: none !important;
    border-left: 4px solid #ffd700 !important;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out 0.2s both;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 10px 30px rgba(13, 69, 44, 0.5) !important;
}

.appointment-info-card:hover {
    transform: translateY(-5px);
    background: rgba(13, 69, 44, 0.95) !important;
    border-left-color: #ffed4e !important;
    box-shadow: 0 15px 40px rgba(13, 69, 44, 0.7) !important;
}

.appointment-info-card .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.appointment-info-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
}

.appointment-info-card h3 {
    font-size: 1.4rem;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.appointment-info-card p {
    color: #cac2b0;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: justify;
}

.appointment-info-card p a {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 500;
}

.appointment-info-card p a:hover {
    text-decoration: underline;
}

.appointment-info-card .card-subtitle {
    font-size: 0.95rem !important;
    color: #cac2b0 !important;
    margin-top: 1rem !important;
    font-style: italic;
    line-height: 1.6;
} */

.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.contact-cards-row .info-card {
    background: rgba(13, 69, 44, 0.8) !important;
    border: none !important;
    border-left: 4px solid #ffd700 !important;
    padding: 2.5rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(13, 69, 44, 0.5) !important;
}

.contact-cards-row .info-card:nth-child(1) { animation-delay: 0.3s; }
.contact-cards-row .info-card:nth-child(2) { animation-delay: 0.4s; }
.contact-cards-row .info-card:nth-child(3) { animation-delay: 0.5s; }

.contact-cards-row .info-card:hover {
    transform: translateY(-5px);
    background: rgba(13, 69, 44, 0.95) !important;
    border-left-color: #ffed4e !important;
    box-shadow: 0 15px 40px rgba(13, 69, 44, 0.7) !important;
}

.contact-cards-row .card-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.contact-cards-row .info-card:hover .card-icon {
    transform: scale(1.1);
}

.contact-cards-row .info-card h3 {
    font-size: 1.3rem;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.6rem 0;
    font-weight: 600;
}

.contact-cards-row .info-card p {
    color: #cac2b0;
    margin: 0 0 0.3rem 0;
    line-height: 1.5;
    font-size: 1rem;
}

.contact-cards-row .info-card p a {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 500;
}

.contact-cards-row .info-card p a:hover {
    text-decoration: underline;
}

.contact-cards-row .card-subtitle {
    font-size: 0.85rem !important;
    color: #a0a080 !important;
    margin-top: 0.4rem !important;
    font-style: italic;
}

.contact-form-wrapper {
    background: rgba(13, 69, 44);
    border: none;
    border-left: 4px solid #ffd700;
    padding: 3rem;
    border-radius: 15px;
    animation: fadeInUp 1s ease-out 0.3s both;
    box-shadow: 0 10px 30px rgba(13, 69, 44, 0.5);
    width: 100%;
    height: fit-content;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════ */
/* ADDITIONAL INFO SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.contact-additional {
    background: linear-gradient(135deg, #0d452c 0%, #1a6b47 100%);
    padding: 60px 20px;
    color: #fff;
    border-radius: 12px;
    margin: 40px 0;
}

.contact-additional h2,
.additional-content h2 {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.benefit-icon {
    font-size: 3em;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.benefit-item h3 {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-size: 1.4em;
}

.benefit-item p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95em;
}

/* ═══════════════════════════════════════════════════════════════ */
/* FAQ SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.contact-faq {
    background: linear-gradient(135deg, #0d452c 0%, #1a6b47 100%);
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 12px;
}

.contact-faq h2 {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.faq-question {
    background: linear-gradient(90deg, #0d452c 0%, #1a6b47 100%);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(90deg, #1a6b47 0%, #22865f 100%);
}

.faq-question h3 {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-size: 1.2em;
}

.faq-question i {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    font-size: 1.2em;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    animation: slideDown 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #e0e0e0;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95em;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* ═══════════════════════════════════════════════════════════════ */
/* RESPONSIVE DESIGN */
/* ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .cards-form-wrapper {
        /* grid-template-columns: 1fr 1fr; */
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-cards-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .cards-form-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-cards-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-cards-top {
        padding: 2rem 1.5rem;
    }

    .cards-form-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .appointment-info-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .contact-cards-row .info-card {
        min-height: auto;
        padding: 1.5rem 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem !important;
    }

    .contact-form-wrapper h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-hero {
        padding: 6rem 1.5rem 2rem;
        min-height: 40vh;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .map-section {
        padding: 2rem 1.5rem;
    }

    .map-container iframe {
        height: 350px;
    }

    .contact-section {
        padding: 2.5rem 1.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-additional {
        padding: 3rem 1.5rem;
    }

    .contact-additional h2 {
        font-size: 2rem;
    }

    .contact-faq {
        padding: 3rem 1.5rem;
    }

    .contact-faq h2 {
        font-size: 2rem;
    }

    .benefits-grid {
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1.3rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-cards-top {
        padding: 1.5rem 1rem;
        margin-top: 1rem;
    }

    .cards-form-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-cards-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .appointment-info-card {
        min-height: auto;
        padding: 1.5rem 1rem;
    }

    .appointment-info-card h3 {
        font-size: 1.2rem;
    }

    .contact-cards-row .info-card {
        padding: 1.5rem 1rem;
        min-height: auto;
    }

    .contact-cards-row .info-card h3 {
        font-size: 1rem;
    }

    .contact-cards-row .info-card p {
        font-size: 0.9rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem !important;
    }

    .contact-form-wrapper h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .contact-hero {
        padding: 5rem 1rem 1.5rem;
        min-height: 35vh;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .map-section {
        padding: 1.5rem 1rem;
    }

    .map-container iframe {
        height: 280px;
    }

    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-additional {
        padding: 2rem 1rem;
    }

    .contact-additional h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-item {
        padding: 1.2rem;
    }

    .contact-faq {
        padding: 2rem 1rem;
    }

    .contact-faq h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .faq-item {
        margin-bottom: 0.5rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }
}

/* ═══════════════════════════════════════════════════════════════ */
/* ANIMATIONS */
/* ═══════════════════════════════════════════════════════════════ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ═══════════════════════════════════════════════════════════════ */
/* MODIFY APPOINTMENT SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.modify-appointment-section {
    background: linear-gradient(135deg, #f0f8f5 0%, #e8f5e9 100%);
    border-left: 4px solid #0d452c;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 2px 8px rgba(13, 69, 44, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.modify-appointment-section h3 {
    color: #0d452c;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modify-appointment-section h3 i {
    color: #28a745;
    font-size: 1.2em;
}

.modify-intro {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 15px;
    line-height: 1.5;
}

.modify-appointment-btn {
    background: linear-gradient(135deg, #0d452c 0%, #0a3620 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(13, 69, 44, 0.2);
}

.modify-appointment-btn:hover {
    background: linear-gradient(135deg, #0a3620 0%, #082817 100%);
    box-shadow: 0 4px 8px rgba(13, 69, 44, 0.3);
    transform: translateY(-2px);
}

.modify-appointment-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(13, 69, 44, 0.2);
}

@media (max-width: 768px) {
    .modify-appointment-section {
        padding: 20px;
        margin-top: 20px;
    }
    
    .modify-appointment-section h3 {
        font-size: 1.1em;
    }
    
    .modify-appointment-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}