/* ========================================
   Custom Styles - Override Bootstrap
   ======================================== */

/* ========================================
   COLOR PALETTE - Executive Coaching Theme
   ========================================
   
   This unique color scheme is designed specifically for 
   executive coaching and leadership development:
   
   PRIMARY (Deep Professional Blue):
   - Main: #1e3a8a - Conveys trust, expertise, and stability
   - Light: #3b82f6 - For hover states and accents
   - Dark: #1e40af - For depth and emphasis
   
   SECONDARY (Sophisticated Teal):
   - Main: #0d9488 - Represents growth, balance, and wisdom
   - Light: #14b8a6 - For highlights and interactive elements
   - Dark: #0f766e - For contrast and depth
   
   ACCENT (Warm Gold):
   - Main: #d97706 - Symbolizes success and achievement
   - Light: #f59e0b - For call-to-action elements
   
   This palette creates a professional, trustworthy, and 
   premium feel that resonates with executive clients while
   standing out from typical corporate blue schemes.
   ======================================== */

/* ========== ROOT VARIABLES ========== */
:root {
    /* Primary: Deep Professional Blue - Trust, Expertise, Stability */
    --primary-color: #1e3a8a;
    --primary-light: #3b82f6;
    --primary-dark: #1e40af;
    
    /* Secondary: Sophisticated Teal - Growth, Balance, Wisdom */
    --secondary-color: #0d9488;
    --secondary-light: #14b8a6;
    --secondary-dark: #0f766e;
    
    /* Accent: Warm Gold - Success, Achievement, Premium */
    --accent-color: #d97706;
    --accent-light: #f59e0b;
    
    /* Neutrals */
    --dark-color: #0f172a;
    --medium-dark: #334155;
    --light-color: #f8fafc;
    --text-color: #475569;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    --gradient-accent: linear-gradient(135deg, #1e3a8a 0%, #0d9488 100%);
    
    /* Fonts */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.25rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== BOOTSTRAP OVERRIDES ========== */
.container {
    max-width: 1200px;
}

/* Override Bootstrap color variables */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

/* ========== NAVIGATION ========== */
.navbar {
    padding: 0.5rem 0;
    transition: var(--transition);
}

.navbar-brand .logo {
    height: 45px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.nav-link.btn {
    padding: 0.4rem 1rem !important;
    font-size: 0.9rem;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
}

.dropdown-item {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* Compact navigation for medium-large screens */
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-link {
        padding: 0.5rem 0.5rem !important;
        font-size: 0.85rem;
    }
    
    .nav-link.btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.85rem;
    }
}

/* Extra compact for smaller large screens */
@media (min-width: 992px) and (max-width: 1099px) {
    .nav-link {
        padding: 0.5rem 0.4rem !important;
        font-size: 0.8rem;
    }
    
    .navbar-brand .logo {
        height: 40px;
    }
    
    .nav-link.btn {
        padding: 0.35rem 0.7rem !important;
        font-size: 0.8rem;
    }
}
.text-justify {
    text-align: justify;
}
.h-auto {
    height: auto;
}
/* ========== HERO SECTIONS ========== */
.hero-section,
.gradient-bg {
    background: var(--gradient-accent);
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero {
    background: var(--gradient-accent);
    color: white;
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero-section::before,
.gradient-bg::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="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,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>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

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

.hero h1,
.hero-section h1,
.gradient-bg h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p,
.hero-section p,
.gradient-bg p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ========== SECTIONS ========== */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* ========== CARDS ========== */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

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

.card-img-top {
    border-radius: 12px 12px 0 0;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ========== FEATURES ========== */
.feature-box {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
}

.feature-box:hover {
    background-color: var(--light-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
}

/* ========== CTA SECTIONS ========== */
.cta-section {
    background: var(--gradient-accent);
    color: white;
    padding: 5rem 0;
    text-align: center;
    border-radius: 12px;
    margin: 3rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--dark-color);
}

.footer-logo {
    max-width: 200px;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color) !important;
    padding-left: 5px;
}

/* Mobile footer centering */
@media (max-width: 991px) {
    .footer .col-lg-4 {
        text-align: center !important;
    }
    
    .footer .footer-logo {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .footer .footer-links {
        text-align: center;
    }
    
    .footer .social-links {
        justify-content: center;
        display: flex;
    }
    
    .footer h5 {
        text-align: center;
    }
    
    .footer p {
        text-align: center;
    }
}

.social-links a {
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color) !important;
    transform: translateY(-3px);
}

/* ========== UTILITIES ========== */
.bg-light-custom {
    background-color: var(--light-color);
}

.text-primary-custom {
    color: var(--primary-color);
}

.shadow-custom {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.rounded-custom {
    border-radius: 12px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    section {
        padding: 3rem 0;
    }
    
    .navbar-brand .logo {
        height: 40px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 5rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .btn {
        padding: 0.6rem 1.5rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ========== CHECKMARK LIST ========== */
.checkmark-list {
    list-style: none;
    padding: 0;
}

.checkmark-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.checkmark-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}


/* Phase Cards for High Potential Program */
.phase-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 5rem;
}

.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.phase-number {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.phase-card h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

/* Certificate Box */
.certificate-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 3px solid #2563eb;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.certificate-box h3 {
    margin-bottom: 1rem;
}

.certificate-box h4 {
    color: #666;
    font-weight: 500;
}

/* Icon Box Large */
.icon-box-large {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.icon-box-large i {
    opacity: 0.9;
}

.icon-box-large h3 {
    font-size: 1.5rem;
    margin: 0;
}

/* Feature Box */
.feature-box {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.feature-box i {
    display: block;
}

.feature-box h4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-box p {
    margin: 0;
    color: #666;
}

/* Icon Box */
.icon-box {
    display: inline-block;
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

/* Min Height for Hero */
.min-vh-75 {
    min-height: 75vh;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .phase-card {
        padding-left: 4rem;
    }
    
    .phase-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        left: 1rem;
    }
    
    .phase-card h4 {
        font-size: 1rem;
    }
    
    .icon-box-large {
        padding: 2rem;
    }
    
    .icon-box-large i {
        font-size: 3rem !important;
    }
    
    .icon-box-large h3 {
        font-size: 1.2rem;
    }
}


/* ========== TESTIMONIAL CAROUSEL ========== */
.testimonial-slide {
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    margin: 0 auto;
    max-width: 900px;
}

.testimonial-content {
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    padding-left: 2rem;
    font-style: italic;
}

.testimonial-author-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-left: 2rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.testimonial-author-title {
    font-size: 0.95rem;
    color: var(--text-color);
    margin: 0;
}

/* Carousel Controls */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

#testimonialCarousel .carousel-control-prev {
    left: -25px;
}

#testimonialCarousel .carousel-control-next {
    right: -25px;
}

#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
    opacity: 1;
    background-color: var(--secondary-color);
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Indicators */
#testimonialCarousel .carousel-indicators {
    margin-bottom: -2rem;
}

#testimonialCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
    border: none;
}

#testimonialCarousel .carousel-indicators button.active {
    opacity: 1;
    background-color: var(--secondary-color);
}

/* Love Section */
.love-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
    border-radius: 15px;
}

.love-section h2 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.love-section p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-slide {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .testimonial-author-box {
        flex-direction: column;
        text-align: center;
        padding-left: 0;
    }
    
    .testimonial-author-info {
        text-align: center;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-author-name {
        font-size: 1.1rem;
    }
    
    .testimonial-author-title {
        font-size: 0.9rem;
    }
    
    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    #testimonialCarousel .carousel-control-prev {
        left: 0;
    }
    
    #testimonialCarousel .carousel-control-next {
        right: 0;
    }
    
    .love-section {
        padding: 2rem 1rem;
    }
}

/* ===================================
   SIMpact Live Cart Button
   =================================== */
#cartBtn {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#cartBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

#cartBtn:active {
    transform: scale(0.95);
}

#cartBadge {
    min-width: 24px;
    height: 24px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    font-weight: 700;
    font-size: 0.7rem !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
}

/* Toast styling */
#cartToast {
    min-width: 300px;
}

#cartToast .toast-body {
    font-weight: 500;
}


/* ===================================
   Blog Styles
   =================================== */
.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.blog-content h3 {
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content ul {
    margin-bottom: 1.5rem;
}

.blog-content img {
    margin: 2rem 0;
}

/* Gallery Styles */
.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Visitor Counter Animation */
#visitorCount {
    font-weight: 600;
    color: var(--primary-color);
}

/* Badge Styles */
.badge {
    font-weight: 500;
    padding: 0.5em 0.8em;
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid #dee2e6;
    margin: 0 0.25rem;
    border-radius: 8px;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination .page-link:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
}
