/* ==========================
   HOME PAGE
   ========================== */

.intro {
    padding: 30px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.services {
    display: flex;
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    flex-wrap: wrap;
}

.service-box {
    background: white;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.service-box-image{
    background: white;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.service-box-image img{
    border-radius: 8px;
}

/* Container for Socials + Hamburger */
.header-right-controls {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between icons and hamburger */
}

/* Social Bar Styling */
.social-bar {
    padding: 10px 0;
}

.social-container {
    max-width: 1200px; /* Match your header-content width */
    margin: 0 auto;
    display: flex;
    justify-content: flex-end; /* Keeps icons on the right */
    gap: 10px;
    padding: 0 10px;
}

/* Social Icon Effects */
.social-icon img {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-icon:hover img {
    opacity: 1;
    transform: scale(1.15);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Mobile Tweak: Center icons on small screens */
@media (max-width: 768px) {
    .social-container {
        justify-content: center;
    }
}

.pricing-card {
    max-width: 400px;
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eef2f3;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pricing-card h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.price-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding: 10px;
}

/* Highlight the Free option */
.price-item.free {
    background-color: #f0fff4; /* Light green success color */
    border-radius: 8px;
    border: 1px dashed #38a169;
}

.label {
    font-weight: 600;
    color: #34495e;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cost {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 4px 0;
}

.duration {
    font-size: 0.9rem;
    color: #7f8c8d;
}

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 15px 0;
}

.consecutive-note {
    font-size: 0.8rem;
    color: #95a5a6;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
}

/* The Container (The Tray) */
.pricing-container {
    display: flex;             /* This puts them in a line */
    justify-content: center;    /* This centers them on the page */
    gap: 20px;                 /* This adds space between the cards */
    padding: 20px;
    flex-wrap: wrap;           /* This allows cards to stack on mobile phones */
}

/* The Individual Cards */
.pricing-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eef2f3;
    
    /* THE FIX: Flex Grow */
    flex: 1;                   /* This forces all cards to be the same height and width */
    min-width: 250px;          /* Ensures they don't get too skinny */
    max-width: 350px;          /* Ensures they don't get too wide on desktop */
    
    text-align: center;
    display: flex;
    flex-direction: column;    
    justify-content: space-between; /* This pushes the bottom text/button to the same level */
}

/* Individual elements inside cards */
.label { font-weight: 600; font-size: 0.9rem; color: #34495e; }
.cost { font-size: 1.8rem; font-weight: bold; margin: 10px 0; }
.duration { color: #7f8c8d; font-size: 0.9rem; }

/* The Footer Note */
.consecutive-note {
    text-align: center;
    margin-top: 20px;
    color: #95a5a6;
    font-style: italic;
}

.pricing-link {
    text-decoration: none; /* Remove underline */
    color: inherit;       /* Keep your original text colors */
    display: block;
    transition: transform 0.2s ease;
}

.pricing-link:hover {
    transform: translateY(-5px); /* Nice little pop effect on hover */
}

/* Ensure the container handles the links correctly */
.pricing-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.session-detail-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.session-info-grid {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 30px;
    margin-top: 20px;
}

#session-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

#session-features li {
    margin-bottom: 8px;
    color: #444;
}

.session-meta {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
}

.price-tag { font-size: 1.5rem; font-weight: bold; color: #2c3e50; }
.duration-tag { margin-bottom: 20px; color: #666; }

.cta-button {
    display: block;
    background: #007bff;
    color: white;
    padding: 12px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

/* Container styling to center or space the button */
.about-us-button {
    display: inline-block;
    margin: 10px 0;
}

/* The actual button link */
a.about-us-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: #007bff; /* Professional Blue */
    color: #ffffff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Hover effects */
a.about-us-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px); /* Slight lift effect */
}

/* Active/Click effect */
a.about-us-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}