/* 66gg - phoenix-style.css - Floating Card Grid Layout */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e8e8e8;
    line-height: 1.7;
    min-height: 100vh;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, #e94560 0%, #f39c12 50%, #e94560 100%);
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.logo-area h1 {
    font-size: 2.2em;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 900;
}

.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-banner {
    background: #fff;
    color: #e94560;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1em;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.cta-banner:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.6);
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 30px;
}

/* Hero Section */
.hero-zone {
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-zone::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-zone h2 {
    font-size: 3em;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.hero-zone p {
    font-size: 1.3em;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.hero-cta-btn {
    background: #fff;
    color: #e94560;
    padding: 18px 50px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3em;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.hero-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

/* Content Area */
.content-area {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-area h2 {
    font-size: 2.5em;
    color: #f39c12;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(243, 156, 18, 0.3);
}

.content-area h3 {
    font-size: 1.9em;
    color: #e94560;
    margin-top: 35px;
    margin-bottom: 20px;
}

.content-area h4 {
    font-size: 1.5em;
    color: #f39c12;
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-area p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Floating Card Grid */
.floating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.float-card {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.15) 0%, rgba(243, 156, 18, 0.15) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(243, 156, 18, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.float-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.float-card:hover::before {
    opacity: 1;
}

.float-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
    border-color: #f39c12;
}

.float-card h4 {
    font-size: 1.6em;
    color: #f39c12;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.float-card p {
    font-size: 1.05em;
    color: #e8e8e8;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.image-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid rgba(243, 156, 18, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.image-gallery img:hover {
    transform: scale(1.08) rotate(2deg);
    border-color: #f39c12;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.5);
}

/* FAQ Section */
.faq-zone {
    margin-top: 50px;
}

.faq-item {
    background: rgba(233, 69, 96, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 5px solid #e94560;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(233, 69, 96, 0.2);
    transform: translateX(10px);
}

.faq-item h4 {
    color: #f39c12;
    font-size: 1.4em;
    margin-bottom: 12px;
}

.faq-item p {
    color: #e8e8e8;
    font-size: 1.05em;
}

/* Reviews Section */
.reviews-zone {
    margin-top: 50px;
}

.review-item {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.15) 0%, rgba(233, 69, 96, 0.15) 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-header strong {
    color: #f39c12;
    font-size: 1.2em;
}

.stars {
    color: #f39c12;
    font-size: 1.3em;
}

.review-item p {
    color: #e8e8e8;
    font-size: 1.05em;
    font-style: italic;
}

/* Footer */
.footer-zone {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 3px solid #e94560;
}

.footer-zone p {
    color: #e8e8e8;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.footer-links a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #e94560;
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .nav-menu a {
        text-align: center;
    }
    
    .hero-zone h2 {
        font-size: 2em;
    }
    
    .floating-grid {
        grid-template-columns: 1fr;
    }
    
    .image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo-area h1 {
        font-size: 1.5em;
    }
    
    .hero-zone h2 {
        font-size: 1.6em;
    }
    
    .hero-zone p {
        font-size: 1.1em;
    }
    
    .content-area h2 {
        font-size: 1.8em;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
}

