/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-large {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 1.5rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #16A34A, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: #6B7280;
    max-width: 40rem;
    margin: 0 auto;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
    background: linear-gradient(to right, #16A34A, #3B82F6);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
}

.btn-block {
    width: 100%;
}

.btn-hero {
    background: linear-gradient(to right, #16A34A, #3B82F6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5), 0 0 40px rgba(34, 197, 94, 0.3);
}

.btn-package {
    width: 100%;
    background: linear-gradient(to right, #16A34A, #3B82F6);
    color: white;
    padding: 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5), 0 0 40px rgba(34, 197, 94, 0.3);
}

.btn-recommended {
    width: 100%;
    color: white;
    padding: 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-recommended-cyan {
    background: linear-gradient(to right, #06B6D4, #3B82F6);
}

.btn-recommended-cyan:hover {
    background: linear-gradient(to right, #0891B2, #2563EB);
}

.btn-recommended-orange {
    background: linear-gradient(to right, #F97316, #EF4444);
}

.btn-recommended-orange:hover {
    background: linear-gradient(to right, #EA580C, #DC2626);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(to right, #16A34A, #3B82F6);
    color: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(to right, #15803D, #2563EB);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===========================
   ICONS
   =========================== */
.icon {
    display: inline-block;
    vertical-align: middle;
}

.icon-green {
    color: #16A34A;
}

.icon-blue {
    color: #3B82F6;
}

/* ===========================
   FLOATING BACKGROUND ICONS
   =========================== */
.floating-icons {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.float-icon {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(22, 163, 74, 0.2);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(10deg) scale(1.05);
    }
    50% {
        transform: translateY(-10px) rotate(-10deg) scale(1.1);
    }
    75% {
        transform: translateY(-15px) rotate(5deg) scale(1.05);
    }
}

/* ===========================
   HEADER
   =========================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo-img {
    height: 3rem;
    width: auto;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-link:hover {
    color: #16A34A;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #16A34A, #3B82F6);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: #F3F4F6;
}

.mobile-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    background: white;
    border-top: 1px solid #F3F4F6;
}

.mobile-nav.active {
    max-height: 500px;
    opacity: 1;
}

.mobile-nav-links {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #16A34A;
    background-color: #F9FAFB;
}

.mobile-contact {
    padding: 1rem;
    border-top: 1px solid #F3F4F6;
    margin-top: 1rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #6B7280;
}

/* Desktop Header */
@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
    
    .header-actions {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #60A5FA 0%, #86EFAC 50%, #60A5FA 100%);
    padding-top: 5rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-float {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
    animation: heroFloat 3s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-12px) rotate(3deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(0, 0, 0, 0.9);
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
}

.hero-stat svg {
    color: #000;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

/* Hero Animations */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-delay-1 {
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

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

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

/* ===========================
   DESTINATIONS SECTION
   =========================== */
.destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.destination-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.destination-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.destination-card:hover .destination-overlay {
    opacity: 0.4;
}

.destination-overlay-purple {
    background: linear-gradient(to top, rgba(168, 85, 247, 0.6), rgba(236, 72, 153, 0.6));
}

.destination-overlay-red {
    background: linear-gradient(to top, rgba(251, 113, 133, 0.6), rgba(239, 68, 68, 0.6));
}

.destination-overlay-orange {
    background: linear-gradient(to top, rgba(251, 146, 60, 0.6), rgba(250, 204, 21, 0.6));
}

.destination-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(10deg) scale(1.1);
    }
    50% {
        transform: rotate(-10deg) scale(1.05);
    }
    75% {
        transform: rotate(5deg) scale(1.1);
    }
}

.destination-content {
    padding: 1.5rem;
    background: white;
    text-align: center;
}

.destination-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.destination-line {
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(to right, #10B981, #3B82F6);
    margin: 0 auto;
    border-radius: 9999px;
}

@media (min-width: 768px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===========================
   PACKAGES SECTION
   =========================== */
.section-packages {
    background: linear-gradient(to bottom, #F0F9FF, #D1FAE5);
}

.packages-header {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.packages-badge {
    background: linear-gradient(to right, #16A34A, #3B82F6);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
    font-size: 1.125rem;
    font-weight: 500;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.package-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.package-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.package-rating {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #16A34A;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.package-rating svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.package-duration {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.package-content {
    padding: 1rem;
}

.package-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1F2937;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.package-price {
    color: #16A34A;
    font-weight: 600;
}

.package-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #6B7280;
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===========================
   SERVICES SECTION
   =========================== */
.section-services {
    background: white;
    position: relative;
    overflow: hidden;
}

.section-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 10%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 90%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    opacity: 0.5;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    padding: 1.5rem;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-gradient {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-gradient {
    opacity: 0.1;
}

.service-gradient-blue {
    background: linear-gradient(to bottom right, #60A5FA, #2563EB);
}

.service-gradient-purple {
    background: linear-gradient(to bottom right, #C084FC, #9333EA);
}

.service-gradient-green {
    background: linear-gradient(to bottom right, #34D399, #059669);
}

.service-gradient-cyan {
    background: linear-gradient(to bottom right, #22D3EE, #0891B2);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 10;
    transition: all 0.6s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-icon-blue {
    background: linear-gradient(to bottom right, #60A5FA, #2563EB);
}

.service-icon-purple {
    background: linear-gradient(to bottom right, #C084FC, #9333EA);
}

.service-icon-green {
    background: linear-gradient(to bottom right, #34D399, #059669);
}

.service-icon-cyan {
    background: linear-gradient(to bottom right, #22D3EE, #0891B2);
}

.service-emoji {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    animation: serviceEmoji 3s ease-in-out infinite;
}

@keyframes serviceEmoji {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(5deg);
    }
    50% {
        transform: scale(1.05) rotate(-5deg);
    }
    75% {
        transform: scale(1.1) rotate(0deg);
    }
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1F2937;
    position: relative;
    z-index: 10;
}

.service-card p {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.5;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===========================
   RECOMMENDED SECTION
   =========================== */
.section-recommended {
    background: linear-gradient(to bottom, #F0F9FF, white);
}

.recommended-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.recommended-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.recommended-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.recommended-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.recommended-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recommended-card:hover .recommended-image img {
    transform: scale(1.1);
}

.recommended-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.recommended-overlay-cyan {
    background: linear-gradient(to top, rgba(6, 182, 212, 0.6), transparent);
}

.recommended-wave-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -10px);
    }
}

.recommended-flash {
    position: relative;
    height: 16rem;
    background: linear-gradient(135deg, #FBBF24 0%, #F97316 50%, #EF4444 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.recommended-flash::before,
.recommended-flash::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

.recommended-flash::before {
    width: 5rem;
    height: 5rem;
    top: 2.5rem;
    left: 2.5rem;
}

.recommended-flash::after {
    width: 4rem;
    height: 4rem;
    bottom: 4rem;
    right: 3rem;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

.flash-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    animation: flashRotate 1.5s ease-in-out infinite;
}

@keyframes flashRotate {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.2) rotate(180deg);
    }
    75% {
        transform: scale(1.2) rotate(360deg);
    }
}

.flash-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.flash-emoji {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    animation: flashEmoji 1s ease-in-out infinite;
}

@keyframes flashEmoji {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(5deg);
    }
    75% {
        transform: scale(1.1) rotate(-5deg);
    }
}

.flash-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.flash-badge {
    display: inline-block;
    background: white;
    color: #F97316;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
    }
}

.recommended-content {
    padding: 1.5rem;
}

.recommended-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.recommended-badge-cyan {
    background: rgba(6, 182, 212, 0.1);
    color: #0891B2;
}

.recommended-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1F2937;
}

.recommended-content p {
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .recommended-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================
   REVIEWS SECTION
   =========================== */
.section-reviews {
    background: linear-gradient(to bottom, white, #D1FAE5);
    position: relative;
    overflow: hidden;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.review-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.review-image {
    position: relative;
    height: 8rem;
    overflow: hidden;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.review-card:hover .review-image img {
    transform: scale(1.1);
}

.review-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.review-location {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.review-content {
    padding: 1.5rem;
}

.review-quote {
    color: #16A34A;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    animation: quoteFloat 2s ease-in-out infinite;
}

@keyframes quoteFloat {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(5deg);
    }
    75% {
        transform: scale(1.1) rotate(-5deg);
    }
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.star-icon {
    width: 1rem;
    height: 1rem;
    color: #FBBF24;
    fill: currentColor;
}

.review-text {
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.875rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #10B981, #3B82F6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 2px solid #D1FAE5;
}

.review-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1F2937;
}

.review-info p {
    font-size: 0.75rem;
    color: #6B7280;
}

.review-heart {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: heartBeat 1.5s ease-in-out infinite;
}

.review-card:hover .review-heart {
    opacity: 1;
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.2) rotate(10deg);
    }
    75% {
        transform: scale(1.2) rotate(-10deg);
    }
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===========================
   FOOTER / CONTACT SECTION
   =========================== */
.footer {
    position: relative;
    background: linear-gradient(135deg, #1E293B 0%, #064E3B 50%, #075985 100%);
    color: white;
    overflow: hidden;
}

.footer-petals {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.petal {
    position: absolute;
    color: rgba(236, 72, 153, 0.2);
    font-size: 1.5rem;
    animation: petalFloat 8s ease-in-out infinite;
}

.petal:nth-child(1) { left: 10%; top: 10%; animation-delay: 0s; }
.petal:nth-child(2) { left: 30%; top: 20%; animation-delay: 1s; }
.petal:nth-child(3) { left: 50%; top: 15%; animation-delay: 2s; }
.petal:nth-child(4) { left: 70%; top: 25%; animation-delay: 3s; }
.petal:nth-child(5) { left: 90%; top: 30%; animation-delay: 4s; }
.petal:nth-child(6) { left: 20%; top: 60%; animation-delay: 0.5s; }
.petal:nth-child(7) { left: 40%; top: 70%; animation-delay: 1.5s; }
.petal:nth-child(8) { left: 60%; top: 65%; animation-delay: 2.5s; }
.petal:nth-child(9) { left: 80%; top: 75%; animation-delay: 3.5s; }
.petal:nth-child(10) { left: 50%; top: 90%; animation-delay: 4.5s; }

@keyframes petalFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-100px) translateX(25px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(0) translateX(-25px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-100px) translateX(0) rotate(270deg);
        opacity: 0.4;
    }
}

.footer .container {
    position: relative;
    z-index: 10;
    padding: 5rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 1.5rem;
}

.footer-form-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-sakura {
    font-size: 2rem;
    animation: sakuraRotate 2s ease-in-out infinite;
}

@keyframes sakuraRotate {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.2) rotate(10deg);
    }
    75% {
        transform: scale(1.2) rotate(-10deg);
    }
}

.footer-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.form-select option {
    background: #1E293B;
    color: white;
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.footer-brand h3 {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #10B981, #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.footer-contact-item.clickable {
    cursor: pointer;
}

.footer-contact-item:hover {
    transform: translateX(10px);
}

.footer-contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-icon-green {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.footer-icon-blue {
    background: rgba(59, 130, 246, 0.2);
    color: #60A5FA;
}

.footer-icon-purple {
    background: rgba(168, 85, 247, 0.2);
    color: #C084FC;
}

.footer-icon-pink {
    background: rgba(236, 72, 153, 0.2);
    color: #F472B6;
}

.footer-contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-contact-item p {
    color: #D1D5DB;
    font-size: 0.875rem;
}

.footer-social h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-icon-facebook {
    background: linear-gradient(to right, #3B82F6, #2563EB);
}

.social-icon-instagram {
    background: linear-gradient(to right, #EC4899, #A855F7);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: #9CA3AF;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================
   TOAST NOTIFICATION
   =========================== */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
    max-width: 300px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left: 4px solid #10B981;
}

.toast.error {
    border-left: 4px solid #EF4444;
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
[data-animation] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-animation].animate {
    opacity: 1;
    transform: translateY(0);
}

[data-animation="fade-up"].animate {
    transform: translateY(0);
}

[data-animation="fade-left"].animate {
    transform: translateX(0);
}

[data-animation="fade-right"].animate {
    transform: translateX(0);
}

[data-animation="fade-left"] {
    transform: translateX(-50px);
}

[data-animation="fade-right"] {
    transform: translateX(50px);
}

/* ===========================
   RESPONSIVE UTILITIES
   =========================== */
@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 1.5rem;
    }
}
