/* Đặt overflow hidden ở đầu file */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-family);
}

/* .cursor {
    position: fixed;
    top: 0; left: 0;
    width: 30px; height: ;
    border-radius: 50%;
    background: rgb(254, 255, 253);
    pointer-events: none;
    transform: translate(-50%, -50%);
    mix-blend-mode: exclusion; 
    transition: width .2s, height .2s;
    z-index: 9999;
  }
   */
header {
    display: flex;
    background-color: var(--primary-600);
    justify-content: center;
    align-items: center;
    padding: 4px 0;
    cursor: pointer;
}

header h1 {
    font-family: var(--font-family);
    font-weight: var(--bold);
    font-size: var(--text-18);
    text-decoration: underline;
    color: var(--secondary-400);
}

nav {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    z-index: 10;
    padding: 0px 120px;
}

.right {
    display: flex;
    flex-direction: row;
    gap: 40px;
    background-color: var(--secondary-50);
    border-radius: 30px;
    padding: 12px 48px;
    align-items: center;
    height: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    pointer-events: auto;
}

.right li {
    list-style: none;
    background: none;
    padding: 0;
    color: var(--primary-700);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.right li a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.right li:hover {
    color: var(--secondary-600);
    transform: scale(1.05);
}

.right li.active {
    color: var(--secondary-600);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 100;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-600);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    header h1 {
        font-size: var(--text-16);
    }
    
    nav {
        padding: 0 20px;
    }
    
    .logo {
        max-width: 60px;
    }
    
    .hamburger {
        display: flex;
        margin-left: auto;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        height: 100vh;
        background-color: var(--secondary-50);
        flex-direction: column;
        padding: 80px 20px 40px;
        transition: right 0.3s ease;
        border-radius: 0;
        gap: 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .right.active {
        right: 0;
    }
    
    .right li {
        font-size: var(--text-18);
        padding: 10px 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid var(--neutral-200);
    }
}

@media screen and (max-width: 480px) {
    header h1 {
        font-size: var(--text-14);
    }
    
    .logo {
        max-width: 50px;
    }
    
    .right {
        width: 75%;
    }
}

/* Hero-section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
    url('/asset/img/herobanner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    gap: 24px;
}

.hero-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-content.show {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: var(--display-40);
    font-weight: var(--bold);
    color: var(--secondary-100);
}

.hero-content h2 {
    width: 500px;
    font-size: var(--text-18);
    font-weight: var(--medium);
    color: var(--neutral-200);
    text-align: center;
}

.hero-content h2 span {
    color: var(--secondary-200);    
}

.hero button {
    font-family: var(--font-family);
    font-size: var(--text-16);
    color: var(--secondary-100);
    font-weight: var(--medium);
    background-color: var(--primary-500);
    border-radius: 20px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease, background 0.3s, color 0.3s;
}

.hero button.show {
    opacity: 1;
    transform: translateY(0);
    transform: scale(1.05);
}

.hero button:hover {
    background-color: var(--primary-400);
    color: var(--secondary-50);
    transform: scale(1.08);
}

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

/* Slider */
.slider {
    position: relative;
    width: 100%;
    height: 533px;
    overflow: hidden;
}

.slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s;
    z-index: 1;
}

.slider img.active {
    opacity: 1;
    z-index: 2;
}

/* n/slider */
/* Featured  */
.featured {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 48px;
padding: 72px 120px;
}

.featured-product-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 54px;
}

.featured h1 {
    font-weight: var(--bold);
    color: var(--primary-500);
}

.featured-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.featured-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-product-card .content {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    gap: 8px;
}

.featured-product-card .content h2 {
 font-size: var(--text-20);
 font-weight: var(--medium);
 text-align: left;
 color: var(--primary-500);
}

.featured-product-card p {
    font-size: var(--text-16);
    font-weight: var(--regular);
    color: var(--neutral-700);
    width: 240px;
    text-align: left;
}

/*n/ Feature */

/* Bảng giá vàng cuộn giấy */
.pricetable {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.pricetable-bg {
    width: 1500px;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricetable-content {
    position: relative;
    background: linear-gradient(rgba(255, 251, 230, 0.9), rgba(255, 251, 230, 0.8)), url('/asset/img/pattern.png');
    border-radius: 8px;
    width: 1200px;
    margin: 0 auto;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    padding: 40px 0;
    border: 16px solid #c62828;
    top: 0;
}

.pricetable-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 54px;
    width: 100%;
}

.pricetable-title-main {
    color: var(--primary-500);
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.pricetable-title-sub {
 color: var(--secondary-600);
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    font-size: var(--display-30);
}

.pricetable-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: var(--text-20);
    color: var(--primary-500);
    font-weight: 500;
    padding: 0 20px;
}

.pricetable-info span {
    flex: 1;
}

.pricetable-info span:first-child {
    text-align: left;
}

.pricetable-info span:nth-child(2) {
    text-align: center;
}

.pricetable-info span:last-child {
    text-align: right;
}

.pricetable-info b {
    color: #a42222;
}

.pricetable-table {
    width: 100%;
    border-spacing: 16px 16px;
    background: none;
    table-layout: fixed;
}

.pricetable-table th {
    background: var(--primary-500);
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 12px 0;
    letter-spacing: 1px;
    width: 33.33%;
}

.pricetable-table thead {
    padding: 0;
}

.pricetable-table th:first-child {
    text-align: center;
}

.pricetable-table th:last-child {
    text-align: center;
}

.pricetable-table th:nth-child(2) {
    text-align: center;
}

.pricetable-table tbody tr td {
    text-align: center;
}

.pricetable-table tbody tr td:first-child {
    text-align: center;
}

.pricetable-table tbody tr td:last-child {
    text-align: center;
}

.pricetable-table td {
    color: var(--primary-500);
    font-size: var(--text-24);
    font-weight: 500;
    text-align: center;
    border: 3px solid var(--secondary-300);
    border-radius: 8px;
    padding: 12px 0;
    width: 33.33%;
}

.pricetable-table td.name {
    color: var(--secondary-700);
    font-size: var(--text-24);
    font-weight: var(--medium);
    text-align: left;
}

.pricetable-table td b {
    color: var(--primary-500);
    font-size: var(--text-24);
    font-weight: var(--medium);
    text-align: left;
}
/* CHART */
.chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 64px 120px;
    
    width: 100%;
    height: auto;
    box-sizing: border-box;
    background-color: var(--secondary-50);
}

.chart h1 {
    font-size: var(--display-30);
    font-weight: var(--bold);
    color: var(--primary-500);
    margin-bottom: 20px;
}

/* Mission & Vision */
.mission-vision {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
    gap: 20px;
    min-height: 500px;
}

.mission-vision::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.mission-vision video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    min-width: 100%;
    min-height: 100%;
}

.mission-vision-title,
.mission-vision .description {
    position: relative;
    z-index: 2;
}

.mission-vision-title {
    color: var(--neutral-50);
    font-size: var(--text-30);
    font-weight: var(--bold);
    text-align: center;
}

.mission-vision-title h1 span {
    color: var(--secondary-100);
}

.description {
    color: var(--neutral-400);
    font-size: var(--text-18);
    font-weight: var(--regular);
    text-align: center;
    width: 850px;
}

/* NEWS */
.news {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 0px;
    position: relative;
    gap: 32px;
    background-color: var(--secondary-50);
}

.news h1 {
    font-size: var(--display-30);
    font-weight: var(--bold);
    color: var(--primary-500);
}

.news-card-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
    padding: 0 120px;
}

.news-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    align-items: center;
    flex: 1 0 0;
    height: 400px;
    border: 1px solid var(--primary-200);
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--neutral-50);
    cursor: pointer;
}

.news-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    align-self: stretch;
    border-radius: 12px;
}

.news-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 8px;
    width: 100%;
}

.news-card-content h2 {
    font-size: var(--text-20);
    font-weight: var(--medium);
    color: var(--secondary-700);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-content p {
    font-size: var(--text-16);
    color: var(--neutral-700);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer */
footer {
    display: flex;
    background-color: var(--neutral-100);
    padding: 48px 120px;
    color: var(--primary-500);
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.footer-container {

    display: flex;

    width: 100%;
    justify-content: space-between;
}

.footer-logo {
    flex: 0 0 150px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.info-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 150px;
}

.info-col h3 {
    color: var(--primary-500);
    font-size: var(--text-16);
    font-weight: var(--medium);
    margin: 0;
}

.info-col p {
    color: var(--neutral-800);
    font-size: var(--text-14);
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

/* Featured Responsive */
@media screen and (max-width: 768px) {
    .featured h1 {
        font-size: var(--text-24);
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    .featured h1 {
        font-size: var(--text-22);
        margin-bottom: 25px;
    }
}

/* News Section Responsive */
@media screen and (max-width: 1024px) {
    .news {
        padding: 50px 0;
    }
    
    .news h1 {
        font-size: var(--text-24);
        margin-bottom: 30px;
    }
    
    .news-card-list {
        padding: 0 60px;
        gap: 20px;
    }
    
    .news-card-content h2 {
        font-size: var(--text-18);
    }
    
    .news-card-content p {
        font-size: var(--text-14);
    }
}

@media screen and (max-width: 768px) {
    .news {
        padding: 40px 0;
    }
    
    .news h1 {
        font-size: var(--text-22);
        margin-bottom: 25px;
    }
    
    .news-card-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
        gap: 15px;
    }
    
    .news-card {
        height: 380px;
    }
    
    .news-card img {
        height: 180px;
    }
    
    .news-card-content h2 {
        font-size: var(--text-16);
    }
    
    .news-card-content p {
        font-size: var(--text-13);
        -webkit-line-clamp: 4;
    }
}

@media screen and (max-width: 480px) {
    .news {
        padding: 30px 0;
    }
    
    .news h1 {
        font-size: var(--text-20);
        margin-bottom: 20px;
    }
    
    .news-card-list {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .news-card {
        height: auto;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .news-card img {
        height: 170px;
    }
    
    .news-card-content {
        padding: 0 5px 10px;
    }
    
    .news-card-content h2 {
        font-size: var(--text-16);
        margin-bottom: 5px;
    }
    
    .news-card-content p {
        font-size: var(--text-12);
        -webkit-line-clamp: 3;
    }
}

/* Footer Responsive */
@media screen and (max-width: 1024px) {
    .footer-container {
        max-width: 900px;
        gap: 30px;
    }
    
    .info-col h3 {
        font-size: var(--text-14);
    }
    
    .info-col p {
        font-size: var(--text-12);
    }
}

@media screen and (max-width: 768px) {
    footer {
        padding: 30px 0;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .footer-logo {
        margin-bottom: 10px;
    }
    
    .footer-info {
        flex-wrap: wrap;
        gap: 20px 40px;
        justify-content: center;
        width: 100%;
    }
    
    .info-col {
        width: 45%;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    footer {
        padding: 25px 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-logo img {
        width: 80px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .info-col {
        width: 100%;
        padding: 5px 0;
        border-bottom: 1px solid var(--neutral-200);
    }
    
    .info-col:last-child {
        border-bottom: none;
    }
    
    .info-col h3 {
        margin-bottom: 5px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Scroll Reveal Animation */
.reveal-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-section.active {
    opacity: 1;
    transform: translateY(0);
}

/* Add delay for staggered animation */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-item.active:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-item.active:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-item.active:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-item.active:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

.logo-link {
    display: block;
    cursor: pointer;
    pointer-events: auto;
}

/* Scroll to Top Button */
.scroll-to-top {
    background-color: var(--primary-500);
    cursor: pointer;
    pointer-events: none;
}

.scroll-to-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-to-top:hover {
    background-color: var(--secondary-500);
}

.scroll-to-top img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Social Actions */
.social-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 99;
}

.action-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.action-button.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.action-button:hover {
    transform: scale(1.1);
}

.zalo-button {
    background-color: #0068ff;
    pointer-events: none;
}

.zalo-button img {
    width: 28px;
    height: 28px;
}

.mess-button {
    background-color: #0084ff;
    pointer-events: none;
}

.mess-button img {
    width: 28px;
    height: 28px;
}

/* Responsive for Social Actions */
@media screen and (max-width: 768px) {
    .social-actions {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .action-button {
        width: 45px;
        height: 45px;
    }
    
    .zalo-button img,
    .mess-button img,
    .scroll-to-top img {
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 480px) {
    .social-actions {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .action-button {
        width: 40px;
        height: 40px;
    }
    
    .zalo-button img,
    .mess-button img,
    .scroll-to-top img {
        width: 20px;
        height: 20px;
    }
}

/* Notification Popup */
.notification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 15px;
    box-sizing: border-box;
}

.notification-popup.show {
    opacity: 1;
    visibility: visible;
}

.notification-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notification-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    object-fit: contain;
}

.close-notification {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-500);
    color: white;
    font-size: 24px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.2s ease;
    z-index: 1001;
}

.close-notification:hover {
    background-color: var(--secondary-500);
}

/* Landscape orientation */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .notification-content img {
        max-height: 80vh;
    }
    
    .close-notification {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* Responsive for notification popup */
@media screen and (max-width: 768px) {
    .notification-content {
        max-width: 95%;
    }
    
    .close-notification {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: -15px;
        right: -15px;
    }
}

@media screen and (max-width: 480px) {
    .notification-popup {
        padding: 10px;
    }
    
    .notification-content {
        max-width: 100%;
    }
    
    .notification-content img {
        max-height: 85vh;
    }
    
    .close-notification {
        width: 30px;
        height: 30px;
        font-size: 18px;
        top: -10px;
        right: -10px;
    }
}

@media screen and (max-width: 320px) {
    .notification-popup {
        padding: 8px;
    }
    
    .close-notification {
        width: 28px;
        height: 28px;
        font-size: 16px;
        top: -5px;
        right: -5px;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 60px 120px;
    background-color: var(--secondary-50);
}

.contact-section h1 {
    text-align: center;
    font-size: var(--display-36);
    font-weight: var(--bold);
    color: var(--primary-500);
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 193, 0, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 12px;
}

.contact-text h3 {
    font-size: var(--text-20);
    font-weight: var(--bold);
    color: var(--primary-800);
    margin-bottom: 8px;
}

.contact-text p {
    font-size: var(--text-16);
    line-height: 1.6;
    color: var(--neutral-700);
}

.contact-map {
    flex: 2;
   height:400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive styles for contact section */
@media screen and (max-width: 1024px) {
    .contact-section {
        padding: 50px 60px;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-map {
        width: 100%;
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding: 40px 30px;
    }
    
    .contact-section h1 {
        font-size: var(--display-28);
        margin-bottom: 30px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-text h3 {
        font-size: var(--text-18);
    }
    
    .contact-map {
        height: 350px;
    }
}

@media screen and (max-width: 480px) {
    .contact-section {
        padding: 30px 20px;
    }
    
    .contact-section h1 {
        font-size: var(--display-24);
        margin-bottom: 25px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .contact-card {
        padding: 15px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    
    .contact-text h3 {
        font-size: var(--text-16);
        margin-bottom: 5px;
    }
    
    .contact-text p {
        font-size: var(--text-14);
    }
    
    .contact-map {
        height: 300px;
    }
}
