/* ===== style.css - Enhanced Colorful Version ===== */
/* Sheoak Retreat Tajpur - Luxury Beach Resort */

/* ===== CSS Variables - Colorful Theme ===== */
:root {
    /* Primary Colors - Tropical Beach Theme */
    --primary-color: #ff6b6b;        /* Coral Red */
    --primary-dark: #ee5253;          /* Darker Coral */
    --primary-light: #ff9f9f;         /* Light Coral */
    --secondary-color: #4ecdc4;       /* Turquoise */
    --secondary-dark: #45b7aa;         /* Dark Turquoise */
    --secondary-light: #7ed5cf;        /* Light Turquoise */
    --accent-color: #ffd166;           /* Sunny Yellow */
    --accent-dark: #f9b83c;             /* Golden Yellow */
    --accent-light: #ffe49e;             /* Light Yellow */
    
    /* Gradient Colors */
    --gradient-sunset: linear-gradient(135deg, #ff6b6b, #ffd166);
    --gradient-ocean: linear-gradient(135deg, #4ecdc4, #556270);
    --gradient-tropical: linear-gradient(135deg, #ff9f9f, #4ecdc4);
    --gradient-gold: linear-gradient(135deg, #ffd166, #ff9f9f);
    --gradient-purple: linear-gradient(135deg, #a363d9, #4ecdc4);
    
    /* Background Colors */
    --light-bg: #f9f9f9;
    --dark-bg: #2c3e50;
    --card-bg: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.4);
    --overlay-gradient: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
    
    /* Text Colors */
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --text-muted: #7f8c8d;
    --text-gold: #ffd166;
    
    /* Shadow Effects */
    --shadow-sm: 0 5px 20px rgba(255, 107, 107, 0.1);
    --shadow-md: 0 10px 30px rgba(255, 107, 107, 0.2);
    --shadow-lg: 0 15px 40px rgba(255, 107, 107, 0.3);
    --shadow-hover: 0 20px 50px rgba(78, 205, 196, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.8s ease;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--light-bg);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-ocean);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    box-shadow: 0 0 20px var(--accent-color);
}

.section-title.text-start::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-subtitle::before {
    content: '✦';
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.5rem;
}

.section-subtitle::after {
    content: '✦';
    color: var(--secondary-color);
    margin-left: 10px;
    font-size: 1.5rem;
}

/* ===== Navigation ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: var(--transition-fast);
    border-bottom: 3px solid transparent;
    border-image: var(--gradient-ocean);
    border-image-slice: 1;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
}

.navbar-brand span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--secondary-color);
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-text-fill-color: var(--secondary-color);
    background: none;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition-fast);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: width var(--transition-fast);
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px var(--accent-color);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 30px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* ===== Hero Slider ===== */
.hero-slider {
    height: 100vh;
    position: relative;
    margin-top: -66px;
}

.carousel-item {
    height: 100vh;
    position: relative;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.9);
    animation: zoomEffect 10s ease infinite;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-gradient);
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-caption h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: slideInUp 1s ease;
    background: linear-gradient(135deg, #fff, var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease 0.2s both;
    color: var(--text-light);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Buttons ===== */
.btn {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.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: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-sunset);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--gradient-ocean);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-secondary {
    background: var(--gradient-ocean);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--gradient-tropical);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--gradient-sunset);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-light {
    background: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--gradient-sunset);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===== Booking Search Bar ===== */
.booking-search-bar {
    position: relative;
    z-index: 10;
    margin-top: -80px;
}

.search-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 0px solid transparent;
    border-image: var(--gradient-tropical);
    border-image-slice: 1;
    animation: float 3s ease infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.search-wrapper .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.search-wrapper .input-group {
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: var(--transition-fast);
}

.search-wrapper .input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.search-wrapper .input-group-text {
    background: var(--gradient-sunset);
    border: none;
    color: white;
    padding: 0.75rem 1rem;
}

.search-wrapper .form-control,
.search-wrapper .form-select {
    border: none;
    padding: 0.75rem 1rem;
    font-weight: 500;
}

.search-wrapper .btn {
    padding: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===== Feature Cards ===== */
.feature-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-tropical);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.feature-card:hover::before {
    height: 10px;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gradient-sunset);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    transition: var(--transition-normal);
    position: relative;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--secondary-color);
    border-bottom-color: var(--accent-color);
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg) scale(1.1);
    background: var(--gradient-ocean);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-tropical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== Statistics Section ===== */
.statistics-section {
    background: var(--gradient-ocean);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.1) 20px,
        rgba(255, 255, 255, 0.1) 40px
    );
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.stat-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
}

.stat-card i {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--accent-color);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.stat-card p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== About Section ===== */
.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    transition: var(--transition-slow);
}

.about-image-wrapper:hover img {
    transform: scale(1.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    color: white;
    padding: 2.5rem;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease infinite;
    border: 4px solid white;
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.about-stats {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(78,205,196,0.1));
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,107,107,0.2);
    transition: var(--transition-fast);
}

.about-stats:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255,107,107,0.2), rgba(78,205,196,0.2));
}

.about-stats .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-tropical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stats .stat-label {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* ===== Room Cards ===== */
.room-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    position: relative;
    border: 1px solid rgba(255,107,107,0.1);
}

.room-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.room-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.2) rotate(2deg);
}

.room-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-sunset);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: var(--shadow-sm);
    animation: pulse 2s ease infinite;
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.room-overlay-content {
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.room-card:hover .room-overlay-content {
    transform: translateY(0);
}

.room-overlay-content span {
    display: inline-block;
    background: var(--gradient-gold);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.room-info {
    padding: 2rem;
}

.room-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-tropical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.room-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.room-meta i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.room-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.room-price {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(78,205,196,0.1));
    border-radius: var(--radius-md);
}

.current-price {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 1rem;
}

.per-night {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.room-card .btn {
    width: 100%;
    background: var(--gradient-ocean);
    border: none;
    position: relative;
    overflow: hidden;
}

.room-card .btn::before {
    content: '✨';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition-fast);
}

.room-card .btn:hover::before {
    left: 20px;
}

/* ===== Attraction Cards ===== */
.attraction-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    position: relative;
}

.attraction-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.attraction-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.2);
}

.attraction-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.attraction-distance {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.attraction-info {
    padding: 2rem;
}

.attraction-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.attraction-info p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.attraction-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.attraction-meta i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-fast);
    font-size: 1rem;
}

.btn-link:hover {
    gap: 1.5rem;
    color: var(--secondary-color);
}

.btn-link i {
    transition: var(--transition-fast);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* ===== Dining Section ===== */
.dining-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.dining-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease infinite;
}

.dining-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.feature-item:hover {
    transform: translateX(5px);
    background: var(--gradient-sunset);
    color: white;
}

.feature-item:hover i,
.feature-item:hover span {
    color: white;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.feature-item span {
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.dining-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.dining-image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.dining-image-grid img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

/* ===== Testimonials ===== */
.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid rgba(255,107,107,0.1);
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 8rem;
    color: rgba(255,107,107,0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    font-size: 1.3rem;
    margin-right: 0.3rem;
    animation: starPulse 1s ease infinite;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.testimonial-rating i:nth-child(1) { animation-delay: 0.1s; }
.testimonial-rating i:nth-child(2) { animation-delay: 0.2s; }
.testimonial-rating i:nth-child(3) { animation-delay: 0.3s; }
.testimonial-rating i:nth-child(4) { animation-delay: 0.4s; }
.testimonial-rating i:nth-child(5) { animation-delay: 0.5s; }

.testimonial-content {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: var(--gradient-gold);
    padding: 3px;
    transition: var(--transition-normal);
}

.testimonial-card:hover .author-image {
    transform: rotate(360deg);
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.author-info p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--gradient-tropical);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 10%, transparent 10%);
    background-size: 50px 50px;
    animation: moveDots 20s linear infinite;
}

@keyframes moveDots {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.cta-wrapper {
    padding: 4rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.cta-wrapper h2 {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-wrapper p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

.cta-benefits {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cta-benefits span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
}

.cta-benefits i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.offer-badge {
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    padding: 2rem;
    border-radius: var(--radius-md);
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    text-align: center;
    animation: float 3s ease infinite;
}

.offer-tag {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 0.8rem;
}

.offer-discount {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.offer-code {
    display: block;
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 2px;
}

/* ===== Newsletter Section ===== */
.newsletter-section {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.05) 20px,
        rgba(255,255,255,0.05) 40px
    );
}

.newsletter-section h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.newsletter-form .input-group {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
}

.newsletter-form .btn {
    padding: 1.2rem 3rem;
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    background: var(--gradient-gold);
    font-weight: 700;
    text-transform: uppercase;
}

.newsletter-form .btn:hover {
    background: var(--gradient-sunset);
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #1e2b37, #2c3e50);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-tropical);
}

.footer h5 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    color: white;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px var(--accent-color);
}

.footer p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition-fast);
    color: var(--accent-color);
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(20px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}

.contact-info li:hover {
    transform: translateX(5px);
    color: white;
}

.contact-info i {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    transform: scale(0);
    transition: var(--transition-fast);
    border-radius: 50%;
    z-index: -1;
}

.social-links a:hover {
    color: white;
    transform: translateY(-5px);
}

.social-links a:hover::before {
    transform: scale(1);
}

.newsletter-form-footer {
    margin-top: 1rem;
}

.newsletter-form-footer .input-group {
    border-radius: var(--radius-full);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.newsletter-form-footer .form-control {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 0.8rem 1.2rem;
}

.newsletter-form-footer .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form-footer .btn {
    background: var(--gradient-gold);
    border: none;
    padding: 0.8rem 1.5rem;
}

.newsletter-form-footer .btn:hover {
    background: var(--gradient-sunset);
}

.payment-methods i {
    font-size: 2rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition-fast);
}

.payment-methods i:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* ===== Back to Top Button ===== */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-sunset);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 99;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

#back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-ocean);
}

/* ===== Loading Spinner ===== */
.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255,107,107,0.2);
    border-top-color: var(--primary-color);
    border-right-color: var(--secondary-color);
    border-bottom-color: var(--accent-color);
    border-radius: 50%;
    animation: spinner 1s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(135deg, #f9f9f9, #e9ecef);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-sunset);
    border-radius: var(--radius-full);
    border: 3px solid #f9f9f9;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-ocean);
}

/* ===== Selection Color ===== */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}