/*
Theme Name: Portfolio
Theme URI: 
Author: Wordable AI
Description: A modern WordPress theme built with AI
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: portfolio
*/

/* --- Root Variables --- */
:root {
    --primary: #FFD700;
    --primary-hover: #F2CC00;
    --secondary: #121212;
    --bg-dark: #1A1A1A;
    --bg-light: #F9F9F9;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-main);
    background: var(--bg-light);
    overflow-x: hidden;
}
a{text-decoration:none; color:inherit; transition: 0.3s; }
li{list-style:none;}
img{max-width:100%; height:auto;}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    gap: 10px;
    border: none;
    transition: 0.3s transform, 0.3s background;
}
.btn:active { transform: scale(0.96); }
.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}
.btn-primary:hover { background: var(--primary-hover); }
.btn-dark { background: var(--secondary); color: #fff; }
.btn-full { width: 100%; }
.btn-large { padding: 18px 40px; font-size: 1.1rem; }

/* --- Header --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}
.site-header .site-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}
.logo-icon { color: var(--primary); font-size: 1.8rem; }
.logo-text span { color: var(--primary); }

.site-navigation {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-list {
    display: flex;
    gap: 24px;
}
.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 0;
}
.nav-list a:hover { color: var(--primary); }

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--secondary);
    transition: 0.3s;
}

/* --- Hero Section --- */
.hero-section {
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, #fff, #f3f3f3);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
}
.text-gradient { color: gold; background: linear-gradient(90deg, #FFD700, #ff8c00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-lead { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 500px; }

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.1);
    color: #ff8c00;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.booking-card {
    padding: 40px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}
.booking-header h3 { font-family: var(--font-heading); margin-bottom: 5px; }
.booking-header p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 25px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--text-muted); }
.form-group label i { color: var(--primary); margin-right: 5px; }
.form-group input, .form-group select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fdfdfd;
    font-family: inherit;
    font-size: 0.95rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* --- Services --- */
.services-section { padding: 100px 0; background: #fff; }
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}
.section-title { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 10px; }
.section-subtitle { color: var(--text-muted); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.service-card {
    padding: 40px;
    background: #fdfdfd;
    border-radius: 20px;
    transition: 0.4s transform, 0.4s box-shadow;
    border: 1px solid #f0f0f0;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-color: var(--primary);
}
.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}
.service-card h3 { margin-bottom: 15px; font-family: var(--font-heading); }
.learn-more { display: inline-block; margin-top: 20px; font-weight: 600; color: var(--primary); font-size: 0.9rem; }

/* --- How It Works --- */
.how-it-works { background: var(--secondary); padding: 100px 0; color: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-top: 60px; }
.step-item { position: relative; }
.step-number {
    font-size: 4rem;
    font-weight: 800;
    opacity: 0.1;
    line-height: 1;
    margin-bottom: -30px;
}
.step-item h3 { font-family: var(--font-heading); margin-bottom: 15px; position: relative; }

/* --- Pricing Components --- */
.pricing-header { text-align: center; padding: 60px 0; background: var(--secondary); color: #fff; margin-bottom: 60px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 80px; }
.price-card { background: #fff; border-radius: 24px; padding: 40px; border: 1px solid #eee; transition: 0.4s; position: relative; overflow: hidden; }
.price-card.featured { border: 2px solid var(--primary); transform: scale(1.05); z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.price-card .badge-popular { position: absolute; top: 20px; right: -35px; background: var(--primary); color: var(--secondary); padding: 5px 40px; transform: rotate(45deg); font-weight: 700; font-size: 0.75rem; }
.price-tag { margin: 25px 0; font-family: var(--font-heading); }
.price-tag .currency { font-size: 1.5rem; vertical-align: top; margin-top: 10px; display: inline-block; }
.price-tag .amount { font-size: 3.5rem; font-weight: 800; color: var(--secondary); }
.price-tag .period { color: var(--text-muted); }
.price-features { margin-bottom: 30px; }
.price-features li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: var(--text-muted); font-size: 0.95rem; }
.price-features i { color: #2ecc71; }

.fare-table-container { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); margin-top: 40px; }
.fare-table { width: 100%; border-collapse: collapse; text-align: left; }
.fare-table th { background: #f8f8f8; padding: 20px; font-family: var(--font-heading); font-weight: 600; }
.fare-table td { padding: 20px; border-bottom: 1px solid #eee; }
.fare-table tr:last-child td { border: none; }

/* --- Homepage Expanded Sections --- */
.safety-section { background: #fff; padding: 100px 0; }
.safety-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }
.safety-card { padding: 30px; border-radius: 20px; border: 1px solid #f0f0f0; transition: 0.3s; }
.safety-card i { font-size: 2rem; color: var(--primary); margin-bottom: 20px; display: block; }
.safety-card:hover { border-color: var(--primary); transform: translateY(-5px); }

.testimonials-section { padding: 100px 0; background: var(--bg-light); }
.testimonial-card { background: #fff; padding: 40px; border-radius: 24px; box-shadow: var(--shadow); position: relative; }
.quote-icon { position: absolute; top: 20px; right: 20px; font-size: 3rem; color: #f0f0f0; }
.user-meta { display: flex; align-items: center; gap: 15px; margin-top: 25px; }
.user-meta img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.stars { color: #f1c40f; margin-bottom: 10px; }

.faq-section { padding: 100px 0; background: #fff; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border: 1px solid #eee; border-radius: 12px; overflow: hidden; }
.faq-question { padding: 20px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.faq-answer { padding: 0 25px 20px; display: none; color: var(--text-muted); }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question { color: var(--primary); }

.partner-section { padding: 80px 0; }
.partner-banner { background: var(--secondary); border-radius: 30px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; color: #fff; }
.partner-content { padding: 60px; }
.partner-img { background: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=800&q=80') center/cover; }

/* --- Internal Page Components --- */
.subpage-hero { padding: 120px 0 60px; background: var(--secondary); color: #fff; text-align: center; }
.subpage-hero h1 { font-family: var(--font-heading); font-size: 3.5rem; margin-bottom: 20px; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; font-size: 0.9rem; opacity: 0.7; }
.breadcrumb a:hover { color: var(--primary); }

/* About Page Styles */
.about-content { padding: 80px 0; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; text-align: center; }
.stat-box { padding: 30px; background: #fff; border-radius: 20px; box-shadow: var(--shadow); }
.stat-box h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 5px; }

/* Contact Page Styles */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; padding: 80px 0; }
.contact-info-card { background: #fff; padding: 40px; border-radius: 24px; box-shadow: var(--shadow); height: 100%; }
.contact-method { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.c-icon { width: 50px; height: 50px; background: rgba(255, 215, 0, 0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }

.contact-form-wrapper { background: #fff; padding: 50px; border-radius: 24px; box-shadow: var(--shadow); }
.modern-form .form-group { margin-bottom: 25px; }
.modern-form input, .modern-form textarea { width: 100%; padding: 15px 20px; border: 1px solid #eee; border-radius: 12px; background: #fbfbfb; font-family: inherit; }
.modern-form textarea { height: 150px; }

/* Menu Styling Enhancement */
.nav-list .menu-item a { position: relative; }
.nav-list .menu-item a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; 
    background: var(--primary); transition: 0.3s; 
}
.nav-list .menu-item a:hover::after { width: 100%; }

/* --- CTA Banner --- */
.cta-banner { padding: 80px 0; }
.cta-box {
    background: linear-gradient(135deg, var(--secondary) 0%, #2a2a2a 100%);
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-box h2 { font-size: 2.5rem; margin-bottom: 15px; font-family: var(--font-heading); }
.cta-box p { font-size: 1.1rem; opacity: 0.8; margin-bottom: 35px; }

/* Responsive */
@media (max-width: 991px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 3rem; }
    .hero-lead { margin: 0 auto 30px; }
    .hero-stats { justify-content: center; }
    .site-navigation { display: none; }
    .mobile-menu-toggle { display: flex; }
}

.hero-stats { display: flex; gap: 30px; margin-top: 20px; }
.stat-val { display: block; font-size: 1.5rem; font-weight: 700; color: var(--secondary); }
.stat-lbl { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* WordPress Classes */
.alignwide{max-width:1400px;margin-left:auto;margin-right:auto}
.alignfull{width:100vw;position:relative;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw}
.wp-block-image img{border-radius:8px}
