/* ==================================================== */
/* CSS Variables & Base */
/* ==================================================== */
:root {
    --primary-color: #5349d6;
    --secondary-color: #5249d4;
    --dark-color: #1a252f;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Source Serif Pro', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ==================================================== */
/* Contact Hero Section */
/* ==================================================== */
.contact-hero {
    padding: 100px 0;
    background: #03224d;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.contact-hero::before {
    content: none;
}

.contact-hero .container,
.contact-hero-wrapper,
.contact-hero-content {
    position: relative;
    z-index: 2;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #03224d;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 25, 36, 0.85) 0%, rgba(9, 7, 26, 0.8) 100%);
    pointer-events: none;
}

.hero-video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background:
        linear-gradient(135deg, rgba(3, 34, 77, 0.9), rgba(3, 34, 77, 0.72)),
        url('../assets/images/hero-banner-image2.jpeg') center/cover no-repeat;
    color: rgba(255, 255, 255, 0.82);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.85rem;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.hero-video-placeholder i {
    font-size: 3rem;
}

.hero-video-container.is-video-ready .hero-video-placeholder {
    opacity: 0;
    visibility: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-video-container.is-video-ready .hero-video {
    opacity: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* ==================================================== */
/* Quick Connect Cards */
/* ==================================================== */
.quick-connect {
    padding: 60px 0;
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.quick-connect::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(83, 73, 214, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.quick-connect::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(83, 73, 214, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.connect-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.connect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
}

.connect-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(83, 73, 214, 0.18);
}

.connect-icon {
    width: 70px;
    height: 70px;
    background: rgba(83, 73, 214, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.connect-card:hover .connect-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.connect-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Source Serif Pro', serif;
}

.connect-main {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.connect-alt {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.connect-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(83, 73, 214, 0.08);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(83, 73, 214, 0.14);
    width: 100%;
}

.connect-action:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(83, 73, 214, 0.3);
}

/* Social Media Icons */
.connect-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(83, 73, 214, 0.14);
    flex-wrap: wrap;
}

.connect-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    background: var(--primary-color);
}

.connect-social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ==================================================== */
/* Location & Hours */
/* ==================================================== */
/* Location & Hours - Updated with Real Map */
.location-map {
    position: relative;
    padding: 0;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
}

.map-container {
    flex: 1;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

.map-buttons-container {
    padding: 20px;
    background: var(--primary-color);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.map-buttons-container .map-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.map-buttons-container .btn {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.map-buttons-container .btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Hours Card - Keep as is */
.hours-card {
    padding: 40px;
}

.hours-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.hours-card h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.hours-list {
    margin-bottom: 30px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hours-row:last-child {
    border-bottom: none;
}

.days {
    font-weight: 600;
    color: var(--dark-color);
}

.time {
    color: var(--gray-color);
}

.urgent-note {
    background: rgba(83, 73, 214, 0.08);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.urgent-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.urgent-note p {
    color: var(--dark-color);
    font-size: 0.95rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .location-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .map-container iframe {
        min-height: 300px;
    }
    
    .map-buttons-container .map-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .map-buttons-container .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .hours-card {
        padding: 30px;
    }
    
    .hours-card h3 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .map-container {
        min-height: 250px;
    }
    
    .map-container iframe {
        min-height: 250px;
    }
    
    .hours-card {
        padding: 25px 20px;
    }
    
    .hours-card h3 {
        font-size: 1.3rem;
    }
    
    .hours-row {
        font-size: 0.9rem;
    }
    
    .urgent-note {
        padding: 15px;
    }
    
    .urgent-note p {
        font-size: 0.85rem;
    }
}

/* ==================================================================== */
/* Operational Contact Section */
/* ==================================================================== */
.contact-operational {
    padding: 0 0 70px 0;
    background: var(--white);
}

.contact-persons {
    background: linear-gradient(135deg, var(--light-bg) 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 35px;
}

.contact-persons h3 {
    color: var(--dark);
    margin-bottom: 25px;
    font-family: 'Source Serif Pro', serif;
    font-size: 1.6rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.contact-card {
    background: var(--white);
    padding: 22px;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 3px solid var(--red);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-card i:first-child {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 12px;
}

.contact-card .contact-title {
    color: var(--red);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.contact-card p {
    margin-bottom: 6px;
    color: var(--text);
    font-size: 0.9rem;
}

.contact-card i.fa-envelope,
.contact-card i.fa-phone {
    font-size: 0.85rem;
    margin-right: 6px;
    color: var(--blue);
}

.office-location {
    text-align: center;
    padding: 16px;
    background: rgba(83, 73, 214, 0.08);
    border-radius: 12px;
    margin-top: 15px;
}

.office-location i {
    color: var(--red);
    margin-right: 8px;
}




/* ==================================================== */
/* Contact Form */
/* ==================================================== */
.contact-form-section {
    padding: 80px 0;
    background: var(--light-color);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.form-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

#newContactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(83, 73, 214, 0.12);
}

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

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-status {
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 0.95rem;
    line-height: 1.6;
    border: 1px solid transparent;
}

.form-status.is-info {
    background: rgba(3, 34, 77, 0.08);
    border-color: rgba(3, 34, 77, 0.18);
    color: #03224d;
}

.form-status.is-success {
    background: rgba(39, 174, 96, 0.12);
    border-color: rgba(39, 174, 96, 0.24);
    color: #1f6f43;
}

.form-status.is-error {
    background: rgba(180, 40, 21, 0.1);
    border-color: rgba(180, 40, 21, 0.22);
    color: #8c2114;
}

.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 16px;
}

.info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.info-box h4 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.info-box ul {
    list-style: none;
}

.info-box ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 50px;
    text-align: center;
}

.tip-list li {
    color: var(--gray-color);
}

.tip-list li i {
    color: var(--primary-color);
}

.tip-list li a {
    color: var(--primary-color);
    text-decoration: none;
}

.tip-list li a:hover {
    text-decoration: underline;
}

/* ==================================================== */
/* Partners Section */
/* ==================================================== */
.partners-section {
    padding: 60px 0;
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.partner-item {
    background: var(--light-color);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.partner-item span {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* ==================================================== */
/* CTA Section */
/* ==================================================== */
.cta-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-btn-secondary {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.3);
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}


/* Mobile Responsive */

@media screen and (max-width: 1024px) {
    .connect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 60px;
    }

    .hero-video-placeholder {
        font-size: 0.75rem;
        letter-spacing: 0.12em;
    }
    
    .location-wrapper {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        padding: 40px 30px;
    }
    
    .map-placeholder h3 {
        font-size: 1.5rem;
    }
    
    .map-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .map-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .hours-card {
        padding: 30px;
    }
    
    .hours-card h3 {
        font-size: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .connect-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-connect {
        padding: 40px 0;
    }
    
    .connect-card {
        padding: 25px 20px;
    }
    
    .connect-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .connect-card h3 {
        font-size: 1.1rem;
    }
    
    .connect-main {
        font-size: 1rem;
    }
    
    .connect-social {
        gap: 8px;
    }
    
    .connect-social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-contact-card {
        padding: 25px;
    }
    
    .team-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .team-contact-card h4 {
        font-size: 1.2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partner-item {
        padding: 20px 15px;
    }
    
    .partner-item i {
        font-size: 1.5rem;
    }
    
    .partner-item span {
        font-size: 0.8rem;
    }
    
    .form-wrapper {
        padding: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-hero {
        padding: 60px 0 40px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .location-map {
        padding: 30px 20px;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.3rem;
    }
    
    .map-placeholder p {
        font-size: 0.9rem;
    }
    
    .hours-card {
        padding: 25px 20px;
    }
    
    .hours-card h3 {
        font-size: 1.3rem;
    }
    
    .hours-row {
        font-size: 0.9rem;
    }
    
    .urgent-note {
        padding: 15px;
    }
    
    .urgent-note p {
        font-size: 0.85rem;
    }
}

/* ==================================================== */
/* dialog styling when user clicks contact form submit button */
/* ==================================================== */
/* Custom Dialog Styles */
.custom-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.dialog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.dialog-container {
    position: relative;
    z-index: 10000;
    max-width: 400px;
    width: 90%;
    animation: slideUp 0.3s ease;
}

.dialog-content {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.dialog-icon-wrapper {
    margin-bottom: 20px;
}

.dialog-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.custom-dialog-success .dialog-icon {
    color: #10b981;
    stroke-width: 2;
}

.custom-dialog-error .dialog-icon {
    color: #ef4444;
    stroke-width: 2;
}

.custom-dialog-loading .dialog-icon {
    color: #3b82f6;
}

.dialog-spinner {
    animation: spin 1s linear infinite;
}

.dialog-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.dialog-message {
    font-size: 16px;
    line-height: 1.5;
    color: #6b7280;
    margin-bottom: 24px;
}

.dialog-button {
    background: linear-gradient(135deg, #03224d 0%, #0a3a6b 100%);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dialog-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 34, 77, 0.3);
}

.custom-dialog-success .dialog-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.custom-dialog-error .dialog-button {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .dialog-content {
        padding: 24px 20px;
    }
    
    .dialog-icon {
        width: 48px;
        height: 48px;
    }
    
    .dialog-title {
        font-size: 20px;
    }
    
    .dialog-message {
        font-size: 14px;
    }
    
    .dialog-button {
        padding: 10px 24px;
        font-size: 14px;
    }
}
