/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    color: #ffffff;
    background: #0a0a0a;
}

/* ===== VIDEO BACKGROUND ===== */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: -1;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* ===== SCROLL ANIMATION CLASSES ===== */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== HERO SECTION ===== */
.contact-hero {
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 6rem 1rem 3rem;
    position: relative;
    width: 100%;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    animation: fadeInUp 1s ease-out;
}

.contact-hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: min(150px, 30vw);
    height: 4px;
    background: linear-gradient(90deg, transparent, #9c27b0, transparent);
    border-radius: 2px;
}

.contact-hero p {
    color: #e0e0e0;
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: min(700px, 90%);
    margin: 2rem auto 0;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

/* ===== CONTACT GRID ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

/* ===== INFO CARDS ===== */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 24px;
    padding: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(156, 39, 176, 0.5);
    box-shadow: 0 20px 40px rgba(156, 39, 176, 0.3);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(156, 39, 176, 0.1), transparent);
    transition: left 0.7s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: rgba(156, 39, 176, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(156, 39, 176, 0.3);
    font-size: 1.6rem;
    color: #9c27b0;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(360deg);
    background: rgba(156, 39, 176, 0.2);
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.3);
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.info-card p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.info-card .detail {
    color: #9c27b0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(156, 39, 176, 0.1);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9c27b0;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #9c27b0;
    color: #ffffff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(156, 39, 176, 0.4);
}

/* ===== CONTACT FORM COLUMN ===== */
.contact-form-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ===== CONTACT FORM ===== */
.contact-form-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    border-color: rgba(156, 39, 176, 0.4);
    box-shadow: 0 20px 40px rgba(156, 39, 176, 0.2);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #9c27b0;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder {
    color: #505050;
}

.form-select {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 3rem;
}

.form-select option {
    background-color: #1a1a1a;
    color: #ffffff;
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #9c27b0;
    flex-shrink: 0;
}

.form-checkbox a {
    color: #9c27b0;
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.5);
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.btn-submit i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-submit span {
    position: relative;
    z-index: 2;
}

/* ===== FOLLOW US CARD ===== */
.follow-us-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* ===== MAP SECTION ===== */
.map-section {
    margin-bottom: 4rem;
}

.map-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 24px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: rgba(156, 39, 176, 0.4);
    box-shadow: 0 20px 40px rgba(156, 39, 176, 0.2);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(156, 39, 176, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 400px;
    border-radius: 16px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), transparent);
    pointer-events: none;
}

.map-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.map-icon {
    font-size: 3.5rem;
    color: #9c27b0;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.map-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.map-content p {
    color: #b0b0b0;
    font-size: 1rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(156, 39, 176, 0.5);
    box-shadow: 0 15px 30px rgba(156, 39, 176, 0.2);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.faq-question i {
    color: #9c27b0;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.faq-item:hover .faq-question i {
    transform: rotate(90deg);
}

.faq-question-content {
    flex: 1;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.faq-question-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9c27b0;
    font-size: 0.8rem;
    font-weight: 500;
}

.faq-question-author i {
    font-size: 0.8rem;
    color: #9c27b0;
}

.faq-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(156, 39, 176, 0.2);
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(156, 39, 176, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4caf50;
    font-size: 0.85rem;
    font-weight: 500;
}

.faq-answer-author i {
    font-size: 1rem;
    color: #4caf50;
}

/* FAQ Form Container */
.faq-form-container {
    margin-top: 3rem;
    background: rgba(156, 39, 176, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-form-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-form-subtitle {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.faq-message {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.faq-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #4caf50;
}

.faq-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.4);
    color: #f44336;
}

.faq-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-form .form-group {
    display: flex;
    flex-direction: column;
}

.faq-form .form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.faq-form .form-input:focus {
    outline: none;
    border-color: #9c27b0;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.faq-form .btn-submit {
    width: 100%;
    padding: 1rem;
    background: rgba(156, 39, 176, 0.3);
    border: 1px solid rgba(156, 39, 176, 0.5);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.faq-form .btn-submit:hover {
    background: rgba(156, 39, 176, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.4);
}

/* ===== CONTACT MESSAGES ===== */
.contact-message {
    padding: 1rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    animation: fadeInUp 0.5s ease-out;
    border-left: 4px solid;
}

.contact-message.success {
    background: rgba(76, 175, 80, 0.15);
    border-left-color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.contact-message.error {
    background: rgba(244, 67, 54, 0.15);
    border-left-color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

.contact-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===== OFFICE HOURS ===== */
.hours-section {
    margin: 3rem 0 4rem;
}

.hours-card-single {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hours-card-single:hover {
    transform: translateY(-5px);
    border-color: rgba(156, 39, 176, 0.5);
    box-shadow: 0 20px 40px rgba(156, 39, 176, 0.3);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.hours-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 24px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-5px);
    border-color: rgba(156, 39, 176, 0.5);
    box-shadow: 0 20px 40px rgba(156, 39, 176, 0.3);
}

.hours-icon {
    width: 60px;
    height: 60px;
    background: rgba(156, 39, 176, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    border: 1px solid rgba(156, 39, 176, 0.3);
    font-size: 1.8rem;
    color: #9c27b0;
    transition: all 0.3s ease;
}

.hours-card:hover .hours-icon {
    transform: scale(1.1) rotate(360deg);
    background: rgba(156, 39, 176, 0.2);
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.3);
}

.hours-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.hours-card .city {
    color: #9c27b0;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.hours-card .time {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hours-card .status {
    color: #4caf50;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hours-card .status.closed {
    color: #f44336;
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablet */
@media screen and (max-width: 1024px) {
    .main-content {
        padding: 3rem 1.2rem;
    }

    .contact-grid {
        gap: 1.5rem;
    }

    .faq-grid {
        gap: 1rem;
    }
}

/* Mobile Large */
@media screen and (max-width: 768px) {
    .contact-hero {
        min-height: auto;
        padding: 5rem 1rem 3rem;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-cards {
        gap: 1rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .info-card h3 {
        font-size: 1.3rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }

    .info-card .detail {
        font-size: 0.95rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .form-subtitle {
        font-size: 0.9rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .form-input {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .form-checkbox {
        font-size: 0.85rem;
    }

    .btn-submit {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .follow-us-card {
        padding: 1.5rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .map-container {
        padding: 1rem;
    }

    .map-placeholder iframe {
        height: 300px;
    }

    .map-icon {
        font-size: 3rem;
    }

    .map-content h3 {
        font-size: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-item {
        padding: 1.2rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-question-author {
        font-size: 0.75rem;
    }

    .faq-answer {
        font-size: 0.85rem;
    }

    .faq-form-container {
        padding: 1.8rem;
    }

    .faq-form-title {
        font-size: 1.6rem;
    }

    .faq-form-subtitle {
        font-size: 0.9rem;
    }

    .faq-form .form-input {
        padding: 0.9rem 1rem;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hours-card {
        padding: 1.5rem;
    }

    .hours-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

    .hours-card h3 {
        font-size: 1.1rem;
    }

    .hours-card .time {
        font-size: 0.95rem;
    }
}

/* Mobile Small */
@media screen and (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .main-content {
        padding: 1.5rem 0.75rem;
    }

    .info-card {
        padding: 1.2rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }

    .info-card p {
        font-size: 0.85rem;
    }

    .info-card .detail {
        font-size: 0.9rem;
    }

    .contact-form-container {
        padding: 1.2rem;
    }

    .form-title {
        font-size: 1.4rem;
    }

    .form-subtitle {
        font-size: 0.85rem;
    }

    .form-input {
        padding: 0.75rem 0.9rem;
        font-size: 0.85rem;
    }

    .form-checkbox {
        font-size: 0.8rem;
    }

    .btn-submit {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .map-placeholder iframe {
        height: 250px;
    }

    .map-icon {
        font-size: 2.5rem;
    }

    .map-content h3 {
        font-size: 1.3rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-question {
        gap: 0.75rem;
    }

    .faq-question i {
        font-size: 1rem;
    }

    .faq-question h4 {
        font-size: 0.95rem;
    }

    .faq-answer {
        font-size: 0.8rem;
    }

    .faq-form-container {
        padding: 1.5rem;
    }

    .faq-form-title {
        font-size: 1.4rem;
    }

    .faq-form .form-input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .hours-card {
        padding: 1.2rem;
    }

    .hours-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    .hours-card h3 {
        font-size: 1rem;
    }

    .hours-card .time {
        font-size: 0.9rem;
    }
}

/* Landscape Mode */
@media screen and (max-width: 896px) and (orientation: landscape) {
    .contact-hero {
        min-height: auto;
        padding: 6rem 1rem 4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}