/* ===========================================
   CamBiz - Main Stylesheet
   Beautiful colors for guest experience
   =========================================== */

:root {
    --primary: #2E86AB;          /* Ocean Blue */
    --primary-dark: #1a5f7a;
    --secondary: #A23B72;         /* Magenta */
    --accent: #F18F01;            /* Vibrant Orange */
    --success: #27ae60;           /* Green */
    --dark: #1B1B3A;              /* Deep Navy */
    --light: #F8F9FA;
    --white: #FFFFFF;
    --gray: #6c757d;
    --gradient-1: linear-gradient(135deg, #2E86AB 0%, #A23B72 100%);
    --gradient-2: linear-gradient(135deg, #1B1B3A 0%, #2E86AB 100%);
    --gradient-3: linear-gradient(135deg, #F18F01 0%, #A23B72 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================================
   Navigation
   =========================================== */
.navbar {
    background: transparent;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--dark);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    padding: 10px 0;
}

.navbar-brand .brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.navbar-brand .accent {
    color: var(--accent);
}

.navbar .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 8px 20px !important;
    transition: all 0.3s;
}

.navbar .nav-link:hover {
    color: var(--accent) !important;
}

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
}

/* ===========================================
   Hero Section
   =========================================== */
.hero {
    min-height: 100vh;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,186.7C672,203,768,181,864,154.7C960,128,1056,96,1152,101.3C1248,107,1344,149,1392,170.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* ===========================================
   Buttons
   =========================================== */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 134, 171, 0.4);
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-accent:hover {
    background: #d97e00;
    border-color: #d97e00;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(241, 143, 1, 0.4);
}

.btn-outline-light {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
}

/* ===========================================
   Section Styling
   =========================================== */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
}

.section-title .accent-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-3);
    margin: 0 auto;
    border-radius: 2px;
}

/* ===========================================
   Service Cards
   =========================================== */
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

.service-card h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* ===========================================
   Package Cards (Internet, etc.)
   =========================================== */
.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-card.popular {
    border: 3px solid var(--accent);
}

.package-card.popular .package-header {
    background: var(--gradient-3);
}

.package-header {
    background: var(--gradient-1);
    padding: 30px;
    text-align: center;
    color: var(--white);
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.package-speed {
    font-size: 2.5rem;
    font-weight: 700;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 600;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.package-body {
    padding: 30px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: var(--gray);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--success);
    margin-right: 10px;
}

.popular-badge {
    background: var(--accent);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

/* ===========================================
   Listing Cards (Hotels, Restaurants, etc.)
   =========================================== */
.listing-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
}

.listing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.listing-image {
    height: 200px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.listing-body {
    padding: 25px;
}

.listing-body h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.listing-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.listing-meta span {
    font-size: 0.85rem;
    color: var(--gray);
}

.listing-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.listing-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.listing-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===========================================
   Page Headers
   =========================================== */
.page-header {
    background: var(--gradient-2);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===========================================
   Contact Form
   =========================================== */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.1);
}

.contact-info {
    background: var(--gradient-1);
    padding: 40px;
    border-radius: 20px;
    color: var(--white);
    height: 100%;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    opacity: 0.9;
}

/* ===========================================
   Footer
   =========================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand span {
    color: var(--accent);
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--accent);
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 25px;
}

.copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}

.admin-link {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
}

.admin-link:hover {
    color: var(--accent);
}

/* ===========================================
   Utilities
   =========================================== */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-primary-gradient { background: var(--gradient-1) !important; }
.bg-accent-gradient { background: var(--gradient-3) !important; }

/* ===========================================
   Responsive
   =========================================== */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        background: var(--dark);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* ===========================================
   Animations
   =========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Filter buttons */
.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}
