/* ===== Color Palette ===== */
:root {
    /* Primary Colors */
    --primary-color: #7d80ff;      /* Soft Blue */
    --secondary-color: #955c9e;    /* Soft Purple */
    --accent-color: #eb7e32;       /* Soft Orange */
    --success-color: #169844;      /* Soft Green */
    --warning-color: #ffaa0f;      /* Soft Yellow */
    
    /* Light Shades */
    --primary-light: #c3c5f8;
    --secondary-light: #f1d9fc;
    --accent-light: #ebb48e;
    --success-light: #80bd96;
    --warning-light: #fcce79;
    
    /* Dark Shades */
    --primary-dark: #6377d6;
    --secondary-dark: #9853aa;
    --accent-dark: #aa5314;
    --success-dark: #17943c;
    --warning-dark: #ed8802;
    
    /* Neutral Colors */
    --text-dark: #222c3e;
    --text-light: #6e8286;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #eaf5fb;
}

/* ===== Base Styles ===== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 2.52rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.57rem;
}

h4 {
    font-size: 1.36rem;
}

h5 {
    font-size: 1.15rem;
}

h6 {
    font-size: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* ===== Navigation ===== */
.navbar-brand {
    font-weight: 700;
    font-size: 1.53rem;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* ===== Buttons ===== */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===== Sections ===== */
.section-padding {
    padding: 5rem 0;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    padding: 8rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-image {
    border-radius: 1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

/* ===== Feature Cards ===== */
.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 7px 19px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== Feature Items ===== */
.feature-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== Service Cards ===== */
.service-card {
    background: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 19px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-7px);
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

.service-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-card li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

.service-card li:before {
    content: "âœ“";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-card h6 {
    color: var(--accent-color);
    font-size: 1.40rem;
    font-weight: 700;
}

/* ===== Price Cards ===== */
.price-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 110px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: scale(1.05);
}

.price-card.featured h5,
.price-card.featured p {
    color: white;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.price-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-card.featured li {
    border-color: rgba(255, 255, 255, 0.3);
}

.price-card h4 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 1rem;
}

.price-card.featured h4 {
    color: white;
}

/* ===== Team Section ===== */
.team-member {
    text-align: center;
    padding: 1rem;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--primary-light);
}

.team-member h5 {
    color: var(--primary-color);
    margin-bottom: 0.93rem;
}

.team-member p {
    color: var(--text-light);
    font-size: 1.03rem;
}

/* ===== Review Cards ===== */
.review-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.review-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.review-card h6 {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== Case Study Cards ===== */
.case-study-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-card h5 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* ===== Process Steps ===== */
.process-step {
    text-align: center;
    padding: 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.54rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h5 {
    color: var(--primary-color);
    margin-bottom: 0.95rem;
}

/* ===== Timeline ===== */
.timeline-item {
    text-align: center;
    padding: 1rem;
}

.timeline-item h5 {
    color: var(--accent-color);
    margin-bottom: 0.68rem;
}

/* ===== Career Cards ===== */
.career-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.career-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.career-card span {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.94rem;
    font-weight: 500;
}

/* ===== Core Info Cards ===== */
.info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.info-card h5 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

/* ===== Blog Cards ===== */
.blog-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.blog-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.blog-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.blog-card a:hover {
    text-decoration: underline;
}

/* ===== FAQ Cards ===== */
.faq-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.faq-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== Gallery ===== */
.gallery-image {
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* ===== Contact Form ===== */
.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(88, 106, 255, 0.25);
}

.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--text-dark);
    padding: 3rem 0 1rem;
    color: white;
}

.footer h5 {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.footer a {
    color: #b2b2b2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-light);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer li {
    margin-bottom: 0.72rem;
}

/* ===== Breadcrumb ===== */
.breadcrumb-nav {
    background: var(--bg-light);
    padding: 1rem 0;
    margin-top: 76px;
}

.breadcrumb-icon {
    height: 30px;
    width: auto;
}

/* ===== Additional Page Styles ===== */
.preparation-item,
.period-card,
.tech-feature,
.benefit-card,
.safety-item,
.destination-card,
.expertise-card,
.equipment-card,
.booking-info,
.support-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.preparation-item:hover,
.period-card:hover,
.tech-feature:hover,
.benefit-card:hover,
.safety-item:hover,
.destination-card:hover,
.expertise-card:hover,
.equipment-card:hover,
.booking-info:hover,
.support-card:hover {
    transform: translateY(-3px);
}

.preparation-item h5,
.tech-feature h5,
.benefit-card h5,
.booking-info h5,
.support-card h5 {
    color: var(--primary-color);
    margin-bottom: 1.02rem;
}

.period-card h5,
.destination-card h5,
.equipment-card h5 {
    color: var(--secondary-color);
    margin-bottom: 1.16rem;
}

.expertise-card h5 {
    color: var(--accent-color);
    margin-bottom: 1.12rem;
}

.safety-item h5 {
    color: var(--warning-color);
    margin-bottom: 0.89rem;
}

/* ===== Space Page ===== */
#space {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    padding: 2rem;
}

/* ===== Utilities ===== */
.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-accent {
    color: var(--accent-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.bg-accent {
    background-color: var(--accent-color);
} 

.hero-section h1 {
    padding-top: 125px;
}


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
