/* BIẾN CSS MỞ RỘNG */
:root {
    --primary-color: #ff85a2;
    --primary-color-dark: #e56b89;
    --primary-color-light: #ffa7c0;
    --secondary-color: #ffd6e0;
    --accent-color: #ffa7c0;
    --dark-color: #4a4a4a;
    --light-color: #ffffff;
    --border-radius: 8px;
    --border-radius-lg: 15px;
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 20px rgba(255, 133, 162, 0.25);
    --transition: all 0.3s ease;
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    --gradient-primary: linear-gradient(135deg, #ff85a2 0%, #ffa7c0 100%);
    --gradient-secondary: linear-gradient(135deg, #ffd6e0 0%, #ffecf1 100%);
    --pink-light: #ffd1dc;
    --pink-medium: #ff90a6; 
    --pink-dark: #ff5c7f;
    --pink-deep: #ff3366;
    --gray-dark: #444444;
    --white: #ffffff;
    --gold: #d4af37;
    --gold-light: rgba(212, 175, 55, 0.3);
    --main-color: #ff85a2;
    --gradient: linear-gradient(90deg, #ff85a2 0%, #ffb6c1 50%, #ffa07a 100%);
    --light-color: #fff;
    --transition: all 0.3s ease;
}

/* RESET VÀ THIẾT LẬP CƠ BẢN */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    background-color: #fff5f7;
    color: var(--dark-color);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* ANIMATION KEYFRAMES */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(255, 133, 162, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 133, 162, 0.8); }
    100% { box-shadow: 0 0 5px rgba(255, 133, 162, 0.5); }
}

/* LỚP TIỆN ÍCH */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: var(--primary-color);
    opacity: 0.2;
    z-index: -1;
    transform: skewX(-5deg);
}

/* BUTTONS WITH ENHANCED EFFECTS */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    border: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn {
    background: var(--gradient-primary);
    color: var(--light-color);
    box-shadow: 0 5px 15px rgba(255, 133, 162, 0.4);
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.primary-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 133, 162, 0.6);
}

.primary-btn:hover::before {
    left: 100%;
}

.secondary-btn {
    background: var(--light-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--box-shadow-hover);
}

/* HEADER WITH GLASS EFFECT */
header {
    background: var(--gradient);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    animation: slideDown 1s ease forwards;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

header.scrolled {
    padding: 12px 0;
    background: rgba(255, 133, 162, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}
.logo {
    font-size: 1.4rem; /* nhỏ hơn */
    font-weight: bold;
    color: var(--light-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap; /* Ngăn chữ xuống dòng */
}

.logo span {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 18px;
    flex-wrap: nowrap; /* Ngăn menu xuống dòng */
    align-items: center;
}

.nav-links li a {
    color: #fff;
    font-size: 0.95rem; /* nhỏ hơn một chút */
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition: 0.4s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255,255,255,0.6);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
}

/* ENHANCED NAVIGATION MENU */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
    position: relative;
}

nav ul li a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--light-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav ul li a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

nav ul li.active a {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

nav ul li.active a::before {
    transform: scaleX(1);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu:hover {
    transform: rotate(90deg);
}

/* HERO SECTION WITH IMPROVED EFFECTS */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hiệu ứng hình nền */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
    opacity: 0.08; /* Giảm opacity để không quá nổi bật */
    z-index: 0;
    animation: pulse 15s infinite ease-in-out;
}

/* Hiệu ứng phần tử nổi */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.2; /* Giảm độ đục để không quá lộn xộn */
    animation: float 15s infinite ease-in-out;
    filter: blur(3px); /* Làm mềm viền cho đốm */
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    background-color: var(--accent-color);
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 20%;
    background-color: var(--secondary-color);
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
    animation-delay: 6s;
    animation-duration: 20s;
}

/* Container */
.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Enhanced animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.08;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.12;
    }
}

@keyframes glitterText {
    0%, 100% {
        color: var(--primary-color);
        text-shadow: 0 0 5px rgba(var(--primary-rgb, 255, 92, 127), 0.3);
    }
    33% {
        color: var(--accent-color, #ff4778);
        text-shadow: 0 0 8px rgba(var(--primary-rgb, 255, 92, 127), 0.5);
    }
    66% {
        color: var(--secondary-color);
        text-shadow: 0 0 12px rgba(var(--primary-rgb, 255, 92, 127), 0.4), 0 0 2px rgba(var(--accent-rgb, 212, 175, 55), 0.3);
    }
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

/* Hero Content */
.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
    animation: fadeIn 1.2s ease-out;
}

/* Tiêu đề với hiệu ứng WOW */
.hero-content h1 {
    font-size:2.5rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.2;
    animation: slideInUp 1s ease-out;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
    position: relative;
}

/* Hiệu ứng cho highlight */
.hero-content h1 .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    animation: glitterText 5s infinite;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

/* Hiệu ứng hover cho highlight */
.hero-content h1 .highlight:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Hiệu ứng đường gạch chân cho highlight */
.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0%;
    height: 8px;
    background: linear-gradient(90deg, 
        var(--secondary-color, #ff90a6) 0%, 
        var(--primary-color, #ff5c7f) 50%, 
        var(--secondary-color, #ff90a6) 100%);
    background-size: 200% 100%;
    z-index: -1;
    transform: skewX(-12deg);
    border-radius: 4px;
    opacity: 0;
    animation: expandLine 0.8s ease-out 0.5s forwards, shimmer 3s infinite linear 1.5s;
    box-shadow: 0 2px 8px rgba(255,92,127,0.3);
}

/* Đoạn văn mô tả */
.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 40px;
    color: var(--dark-color);
    line-height: 1.7;
    animation: slideInUp 1s ease-out 0.4s forwards;
    opacity: 0;
    font-weight: 400;
    position: relative;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.3);
}

/* Nút Call-to-action */
.cta-buttons {
    display: flex;
    gap: 20px;
    animation: slideInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

/* Nút chính */
.primary-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Hiệu ứng shine cho nút chính */
.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s;
    z-index: 1;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(var(--primary-rgb, 255, 92, 127), 0.3);
}

.primary-btn:hover::before {
    left: 100%;
}

/* Nút thứ cấp */
.secondary-btn {
    position: relative;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(var(--primary-rgb, 255, 92, 127), 0.2);
}

/* Hero Image */
.hero-image {
    flex: 1;
    text-align: right;
    margin-left: 30px;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    width: 100%;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg) translateY(-5px);
}

/* Hiệu ứng viền cho hình ảnh */
.hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 5px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.2;
    animation: pulse 3s infinite;
}

/* Hiệu ứng hào quang cho hình ảnh */
.hero-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(var(--primary-rgb, 255, 92, 127), 0.2) 0%, transparent 70%);
    z-index: -2;
    border-radius: 50%;
    animation: pulse 4s infinite alternate;
}

/* Media queries */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
    }
    
    .hero-image {
        margin-left: 0;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 150px;
        padding-bottom: 80px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.15rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

/* SCROLL DOWN BUTTON */
.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    animation: float 2s infinite ease-in-out;
}

.scroll-down span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: rotate(45deg);
    margin: -10px;
    animation: scrollDown 2s infinite;
}

.scroll-down span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-down span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

/* SECTION STYLES WITH ANIMATIONS */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.section-header p {
    color: #777;
    font-size: 1.1rem;
}



/* ABOUT SECTION WITH CURVED EDGE */
.about {
    background-color: var(--light-color);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--light-color);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
    perspective: 1000px;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
   width:100%;
    margin-right: -122vw;
    transform: rotateY(5deg);
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: rotateY(0);
}

.about-image::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.2;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: #666;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 35px;
}

.feature {
    display: flex;
    align-items: flex-start;
    flex: 1 0 200px;
    transition: var(--transition);
    padding: 15px;
    border-radius: var(--border-radius);
}

.feature:hover {
    background-color: rgba(255, 214, 224, 0.3);
    transform: translateY(-5px);
}

.feature i {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-right: 15px;
    background-color: var(--secondary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.feature:hover i {
    transform: rotateY(180deg);
    background-color: var(--primary-color);
    color: var(--light-color);
}

.feature-text h4 {
    margin-bottom: 5px;
    font-weight: 600;
}

/* SERVICES SECTION WITH FLOATING CARDS */
.services {
    background: linear-gradient(to bottom, #fafafa, #fff5f7);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background-color: var(--light-color);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: var(--transition-bounce);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: -1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: -150%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -2;
    transition: 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.service-card:hover::after {
    bottom: -80%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    position: relative;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    background: var(--gradient-primary);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--light-color);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 600;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 25px;
    color: #666;
    transition: var(--transition);
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 5px 0;
}

.service-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.service-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(8px);
}

/* GALLERY SECTION WITH MASONRY LAYOUT */
.gallery {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background-image: linear-gradient(135deg, #fff5f7 0%, #f8f9fa 100%);
}

/* Hiệu ứng đốm hồng lung linh */
.gallery-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 182, 193, 0.8), rgba(255, 105, 180, 0.3));
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
    animation: float-rotate 20s infinite alternate;
}

@keyframes float-rotate {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) rotate(360deg) scale(1);
        opacity: 0.2;
    }
}

/* Thêm nhiều đốm hồng với các kích thước và vị trí khác nhau */
.bubble:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-duration: 15s;
    filter: blur(2px);
}

.bubble:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 35%;
    right: 15%;
    animation-duration: 18s;
    animation-delay: 2s;
    filter: blur(1px);
}

.bubble:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-duration: 22s;
    animation-delay: 1s;
    filter: blur(3px);
}

.bubble:nth-child(4) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 25%;
    animation-duration: 12s;
    animation-delay: 3s;
    filter: blur(1px);
}

.bubble:nth-child(5) {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 10%;
    animation-duration: 20s;
    animation-delay: 4s;
    filter: blur(2px);
}

.bubble:nth-child(6) {
    width: 40px;
    height: 40px;
    top: 25%;
    left: 30%;
    animation-duration: 16s;
    animation-delay: 2s;
    filter: blur(1px);
}

/* Phần tiêu đề trang với hiệu ứng chuyển động */
.section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    bottom: -10px;
    left: 25%;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-color-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Nút filter cải tiến */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.filter-btn {
    padding: 12px 28px;
    background-color: transparent;
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--text-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.filter-btn.active::before, .filter-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.filter-btn.active, .filter-btn:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.2);
}

/* Gallery grid cải tiến */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 280px;
    grid-auto-flow: dense;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.4) 0%, rgba(255, 20, 147, 0.2) 100%);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.95);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 35px;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    z-index: 2;
}

.gallery-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.2);
    filter: brightness(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 12px;
    font-size: 1.6rem;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease;
    transition-delay: 0.1s;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.gallery-overlay p {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease;
    transition-delay: 0.2s;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
    opacity: 1;
}

/* Nút xem thêm */
.gallery-buttons {
    display: flex;
    gap: 15px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease;
    transition-delay: 0.3s;
}

.gallery-item:hover .gallery-buttons {
    transform: translateY(0);
    opacity: 1;
}

.gallery-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}

/* PRICES SECTION WITH 3D CARDS */
.prices {
    background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.wavy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
}

.wavy-bg svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

.price-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}
/* HOÀN THIỆN PHẦN PRICE CARD */
.price-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 40px 30px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    position: relative;
    transition: var(--transition-bounce);
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 133, 162, 0.1);
}

.price-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    z-index: -1;
    opacity: 0.5;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.price-card:hover::before {
    top: 0;
}

.price-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--box-shadow-hover);
}

.price-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    transform: rotate(45deg) translate(20px, -60px);
    z-index: -1;
}

.price-badge {
    position: absolute;
    top: -10px;
    right: 30px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    /* font-weight: bold; */
    box-shadow: 0 3px 10px rgba(255, 133, 162, 0.3);
    animation: pulse 2s infinite;
    z-index: 999999;
}

.price-header {
    margin-bottom: 30px;
    position: relative;
}

.price-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
}

.price-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: var(--transition);
}

.price-card:hover .price-header h3 {
    color: var(--primary-color);
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.price-duration {
    font-size: 1rem;
    color: #888;
    display: block;
    margin-bottom: 20px;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-card:hover .price-features li {
    padding-left: 5px;
}

.price-features i {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

.fa-check {
    background-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.fa-times {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 133, 162, 0.5);
}

.back-to-top i {
    font-size: 1.2rem;
    animation: arrowUp 1.5s infinite;
}

@keyframes arrowUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* PAGE LOADER */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid var(--secondary-color);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* CÁC HIỆU ỨNG TRANG TRÍ BỔ SUNG */
.section-divider {
    position: relative;
    height: 100px;
    margin-top: -50px;
    z-index: 1;
}

.section-divider.wave-top {
    transform: rotate(180deg);
}

.section-divider svg {
    position: absolute;
    width: 100%;
    height: 100%;
    fill: var(--light-color);
}

/* HIỆU ỨNG ANIMATION CHO CÁC PHẦN TỬ KHI SCROLL */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* NÂNG CẤP FORM LIÊN HỆ */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 133, 162, 0.3);
    background-color: white;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
    padding-left: 15px;
}

.form-group label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.form-submit-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 133, 162, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
    z-index: -1;
}

.form-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 133, 162, 0.5);
}

.form-submit-btn:hover::before {
    left: 100%;
}

/* CÁC HIỆU ỨNG HOVER BỔ SUNG */
.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transform: scale(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
    border-radius: 50%;
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-5px) rotate(360deg);
}

.social-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}
/* TESTIMONIALS SECTION */
.testimonials {
    background-color: var(--secondary-color);
    position: relative;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    padding: 0 20px;
}

.testimonial-content {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 133, 162, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s;
    overflow: hidden;
}
.testimonial-content:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 60px rgba(255, 133, 162, 0.35);
}
.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info span {
    color: #777;
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.testimonial-dots {
    display: flex;
    margin: 0 20px;
}
/* CURSOR CUSTOM */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 133, 162, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

/* COUNTER ANIMATION */
.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.counter-box {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.counter-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.counter-box:hover .counter-icon {
    background-color: var(--primary-color);
}

.counter-box:hover .counter-icon i {
    color: white;
}

.counter-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.counter-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* CTA SECTION ENHANCEMENT */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-particle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.cta-particle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation: float 20s infinite linear;
}

.cta-particle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation: float 25s infinite linear;
}

.cta-particle:nth-child(3) {
    width: 70px;
    height: 70px;
    bottom: 10%;
    left: 20%;
    animation: float 15s infinite linear;
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* RESPONSIVE ENHANCEMENTS */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-item.wide {
        grid-column: auto;
    }
    
    .gallery-item.tall {
        grid-row: auto;
        height: 250px;
    }
}

@media (max-width: 992px) {
    .section-header h2::before {
        font-size: 3.5rem;
    }
    
    .feature {
        flex: 1 0 45%;
    }
    
    .price-table {
        gap: 20px;
    }
    
    .price-card {
        min-width: 200px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header h2::before {
        font-size: 3rem;
        top: -15px;
    }
    
    .about-image::after {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .counter {
        font-size: 2.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2::before {
        font-size: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-features {
        flex-direction: column;
    }
    
    .feature {
        flex: 1 0 100%;
    }
    
    .counter-box {
        margin-bottom: 20px;
    }
    
    .price-card,
    .price-card.featured {
        transform: none;
        max-width: 100%;
    }
    
    .gallery-filter {
        padding: 0 15px;
    }
    
    .form-submit-btn {
        width: 100%;
    }
}
/* CONTACT SECTION */
.contact {
    background-color: var(--light-color);
}

.contact-content {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.contact-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.contact-icon {
    font-size: 24px;
    color: #4285F4;
    margin-bottom: 10px;
}

.contact-card h3 {
    margin: 10px 0;
    color: #333;
}

.contact-card p {
    color: #666;
    font-weight: bold;
}

.map-container {
    display: none;
    width: 100%;
    height: 300px;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: #4285F4;
    text-decoration: none;
}

.map-link:hover {
    text-decoration: underline;
}

button {
    background-color: #4285F4;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
}

button:hover {
    background-color: #3367d6;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-form {
    flex: 1;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* MAP SECTION */
.map {
    padding: 0;
}

.map-container {
    height: 400px;
    width: 100%;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FOOTER */
footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo p {
    margin: 15px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h3, .footer-services h3, .footer-newsletter h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-services h3::after, .footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul, .footer-services ul {
    list-style: none;
}

.footer-links ul li, .footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a, .footer-services ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover, .footer-services ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter p {
    margin-bottom: 15px;
    color: #ccc;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 15px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #e56b89;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    font-size: 0.9rem;
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-left: 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .price-table {
        flex-direction: column;
        align-items: center;
    }
    
    .price-card {
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .price-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .gallery-filter {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
}
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .testimonial-slide {
        display: none;
    }
    
    .testimonial-slide:first-child {
        display: block;
    }
}
/* Notification Container */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 350px;
    z-index: 9999;
}

/* Mobile responsive container */
@media (max-width: 768px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
}

/* Notification */
.notification {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
    padding: 16px;
    transform: translateX(120%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    display: flex;
    align-items: center;
    overflow: hidden;
    max-height: 100px;
    position: relative;
}

/* Mobile responsive notification */
@media (max-width: 480px) {
    .notification {
        padding: 12px;
        max-height: none;
        min-height: 60px;
    }
}

.notification.show {
    transform: translateX(0);
}

.notification.hide {
    transform: translateX(120%);
    opacity: 0;
}

/* Notification Icon */
.notification-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Notification Content */
.notification-content {
    flex-grow: 1;
}

.notification-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
    color: #333;
}

.notification-message {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Mobile responsive font sizes */
@media (max-width: 480px) {
    .notification-title {
        font-size: 14px;
    }
    
    .notification-message {
        font-size: 12px;
    }
}

/* Close button */
.notification-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 2px;
    color: #999;
    font-size: 14px;
    line-height: 1;
    transition: color 0.2s;
}

.notification-close:hover {
    color: #333;
}

/* Progress bar */
.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    transform-origin: left;
}

/* Colors for different notification types */
.notification-success {
    border-left: 4px solid #10b981;
}

.notification-success .notification-icon {
    color: #10b981;
}

.notification-success .notification-progress {
    background-color: #10b981;
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-error .notification-icon {
    color: #ef4444;
}

.notification-error .notification-progress {
    background-color: #ef4444;
}

.notification-warning {
    border-left: 4px solid #f59e0b;
}

.notification-warning .notification-icon {
    color: #f59e0b;
}

.notification-warning .notification-progress {
    background-color: #f59e0b;
}

.notification-info {
    border-left: 4px solid #3b82f6;
}

.notification-info .notification-icon {
    color: #3b82f6;
}

.notification-info .notification-progress {
    background-color: #3b82f6;
}

/* Animation for progress bar */
@keyframes progress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .notification-close {
        padding: 8px;  /* Larger touch target */
    }
}