/* ============================================
   ERNEST EMBASSY TRAVELS & INFINITY MOVIE STAR
   PROFESSIONAL STYLESHEET
   Version: 2.0
   Author: Damian Anielozie Okafor
   Last Updated: 2026
   ============================================ */

/* --------------------------------------------
   BASE STYLES & RESET
-------------------------------------------- */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

/* --------------------------------------------
   TYPOGRAPHY
-------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

/* --------------------------------------------
   PROFESSIONAL LOGO STYLES
-------------------------------------------- */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.9;
}

.logo-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffd700;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.65rem;
    color: rgba(255, 215, 0, 0.8);
    display: block;
    margin-top: 2px;
}

/* --------------------------------------------
   NAVIGATION
-------------------------------------------- */

nav {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
}

.nav-links a:hover {
    color: #ffd700;
}

/* Mobile Navigation Toggle */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: #ffd700;
    font-size: 1.8rem;
    cursor: pointer;
}

/* --------------------------------------------
   CONTAINER & LAYOUT
-------------------------------------------- */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 20px;
}

/* --------------------------------------------
   HERO SECTION
-------------------------------------------- */

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.hero-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

/* --------------------------------------------
   BUTTONS
-------------------------------------------- */

.btn {
    display: inline-block;
    background: #ffd700;
    color: #1a1a2e;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6a41a0 100%);
}

/* --------------------------------------------
   SECTION TITLES
-------------------------------------------- */

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.section-title span {
    border-bottom: 3px solid #ffd700;
    padding-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* --------------------------------------------
   SERVICE CARDS
-------------------------------------------- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
    display: block;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-card p {
    color: #666;
}

/* --------------------------------------------
   WHY CHOOSE SECTION
-------------------------------------------- */

.why-section {
    background: #f0f0f5;
    border-radius: 20px;
    margin: 20px 0;
}

/* --------------------------------------------
   TESTIMONIALS
-------------------------------------------- */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    font-style: italic;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card .author {
    margin-top: 15px;
    font-weight: bold;
    color: #667eea;
    font-style: normal;
}

/* --------------------------------------------
   MEMBERSHIPS
-------------------------------------------- */

.memberships-section {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.memberships-section h3 {
    color: #1a1a2e;
    margin-bottom: 20px;
}

.memberships-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.membership-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.membership-badge:hover {
    transform: translateY(-2px);
}

/* --------------------------------------------
   SOCIAL ICONS
-------------------------------------------- */

.social-section {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.social-section h3 {
    color: #1a1a2e;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    min-width: 75px;
}

.social-icon span:first-child {
    font-size: 28px;
}

.social-icon span:last-child {
    font-size: 11px;
    font-weight: bold;
    color: #333;
    margin-top: 6px;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* --------------------------------------------
   FORM STYLES
-------------------------------------------- */

.form-container {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 40px auto;
    max-width: 800px;
}

.form-container h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.form-container p {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 8px;
}

.radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input {
    width: auto;
    transform: scale(1.1);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 8px;
}

.checkbox-group label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

/* --------------------------------------------
   WHATSAPP FLOATING BUTTON
-------------------------------------------- */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
    font-weight: bold;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background-color: #20b859;
}

/* --------------------------------------------
   BACK TO TOP BUTTON
-------------------------------------------- */

.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border: none;
    font-size: 1.5rem;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* --------------------------------------------
   CAC BADGE
-------------------------------------------- */

.cac-badge {
    background: #ffd700;
    color: #1a1a2e;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: bold;
    margin: 20px auto;
    text-align: center;
}

/* --------------------------------------------
   FOOTER
-------------------------------------------- */

footer {
    background: #1a1a2e;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

footer p {
    margin-bottom: 10px;
}

/* --------------------------------------------
   TWO COLUMN LAYOUT
-------------------------------------------- */

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

/* --------------------------------------------
   CTA SECTION
-------------------------------------------- */

.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 60px 0;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* --------------------------------------------
   RESPONSIVE DESIGN (MOBILE FIRST)
-------------------------------------------- */

@media (max-width: 992px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hamburger {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 10px;
        padding: 10px 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    /* Logo on mobile */
    .logo {
        justify-content: center;
    }
    
    /* Hero */
    .hero {
        padding: 50px 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Grids */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .memberships-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .social-icons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Form */
    .form-container {
        padding: 25px;
        margin: 20px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    /* CTA */
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    /* WhatsApp */
    .whatsapp-float {
        padding: 8px 15px;
        bottom: 15px;
        right: 15px;
        font-size: 12px;
    }
    
    /* Back to top */
    .back-to-top {
        bottom: 70px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-sub {
        font-size: 0.55rem;
    }
}

/* --------------------------------------------
   UTILITY CLASSES
-------------------------------------------- */

.text-center {
    text-align: center;
}

.text-gold {
    color: #ffd700;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* --------------------------------------------
   ANIMATIONS
-------------------------------------------- */

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-card, .testimonial-card, .form-container {
    animation: fadeIn 0.6s ease-out;
}

.logo {
    animation: slideIn 0.5s ease-out;
}

/* --------------------------------------------
   PRINT STYLES
-------------------------------------------- */

@media print {
    nav, .whatsapp-float, .back-to-top, footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .hero {
        background: #333;
        color: white;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
