/* 
   STUDENT COUNSEL - STYLE SYSTEM
   Theme: Light, Professional, Minimal, Elegant
   Colors matched to official logo: Deep Blue (#136c96) & Gold (#e3a830)
*/

:root {
    /* Color Palette */
    --color-primary: #136c96;
    --color-primary-light: #1c88bd;
    --color-primary-rgb: 19, 108, 150;
    --color-gold: #e3a830;
    --color-gold-light: #f5b945;
    --color-gold-rgb: 227, 168, 48;
    
    /* Neutral Colors */
    --color-bg-main: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-card: #ffffff;
    --color-text-title: #0f172a;
    --color-text-body: #334155;
    --color-text-muted: #64748b;
    --color-border: #e2e8f0;
    --color-border-hover: #cbd5e1;
    
    /* WhatsApp Colors */
    --color-whatsapp: #25d366;
    --color-whatsapp-dark: #128c7e;

    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Shadow Styles */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 16px 40px rgba(19, 108, 150, 0.06);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);

    /* Spacing & Borders */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-main);
    color: var(--color-text-body);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    color: var(--color-text-title);
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
}

p {
    margin-bottom: 1rem;
}

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

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

/* Common Layout Components */
section {
    padding: 100px 0;
}

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

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

/* Accent Line with Gradient */
.accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-gold) 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.accent-line.align-left {
    margin: 0;
}

/* Gradient Text Highlight */
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 30%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(19, 108, 150, 0.2);
}

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

.btn-outline:hover {
    background-color: rgba(19, 108, 150, 0.04);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: #ffffff;
    font-weight: 600;
    border: none;
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(19, 108, 150, 0.08);
    color: var(--color-primary);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

/* Header & Navigation (Translucent Glassmorphism) */
.navbar {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.logo-img {
    height: 84px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-base);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
    letter-spacing: -0.5px;
    text-transform: uppercase;
    transition: var(--transition-base);
}

.logo-accent {
    color: var(--color-gold);
}

.navbar.scrolled .logo-img {
    height: 60px;
}

.navbar.scrolled .logo-text {
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-body);
    position: relative;
    padding: 6px 0;
}

.nav-item:hover, .nav-item.active {
    color: var(--color-primary);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-base);
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

.nav-cta {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-title);
    cursor: pointer;
}

/* Hero Section with Glowing Blurry Orbs */
.hero-section {
    padding: 80px 0 100px 0;
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(19, 108, 150, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 168, 48, 0.06) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--color-text-title);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    background-color: #ffffff;
    width: 100%;
}

/* Floating Card with Frosted Glass styling */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.info-card {
    bottom: 24px;
    left: -40px;
    animation: floating 4s ease-in-out infinite;
}

.icon-gold {
    color: var(--color-gold);
    font-size: 2rem;
}

.floating-card h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.floating-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* About Us Section */
.about-section {
    background-color: var(--color-bg-main);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.85rem;
    margin-bottom: 20px;
    color: var(--color-text-title);
}

.about-text p {
    font-size: 1.05rem;
    color: var(--color-text-body);
    margin-bottom: 24px;
}

.features-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    color: var(--color-primary);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-item strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text-title);
    display: block;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background-color: var(--color-bg-alt);
    padding: 36px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 30px rgba(19, 108, 150, 0.08);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Services Section */
.services-section {
    background-color: var(--color-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(19, 108, 150, 0.12);
    border-color: var(--color-primary);
}

.service-card.featured {
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-md);
}

.service-card.featured:hover {
    box-shadow: 0 20px 40px rgba(227, 168, 48, 0.15);
    border-color: var(--color-gold);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-gold);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: rgba(19, 108, 150, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.service-card.featured .service-icon-wrapper {
    background-color: var(--color-primary);
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.service-meta {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.service-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.service-bullets li {
    font-size: 0.9rem;
    color: var(--color-text-body);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-bullets li i {
    font-size: 0.7rem;
    color: var(--color-primary);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--color-bg-main);
    overflow: hidden;
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.testimonial-slider {
    display: flex;
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    padding: 48px;
    border-radius: var(--radius-lg);
    position: relative;
    text-align: center;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(19, 108, 150, 0.1);
    position: absolute;
    top: 24px;
    left: 48px;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text-title);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.slider-btn {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-body);
    transition: var(--transition-base);
}

.slider-btn:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--color-primary);
}

/* Location Section */
.location-section {
    background-color: var(--color-bg-alt);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.location-intro {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(19, 108, 150, 0.06);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-detail-item p {
    font-size: 0.95rem;
    color: var(--color-text-body);
    margin: 0;
}

.map-card-wrapper {
    display: flex;
    justify-content: center;
}

.map-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.map-placeholder {
    height: 320px;
    width: 100%;
    background-color: #e5e5e5;
}

.map-card-details {
    padding: 20px;
    border-top: 1px solid var(--color-border);
}

/* Enquiry Form Section with Soft Glowing Orb background */
.enquiry-section {
    background-color: var(--color-bg-main);
    position: relative;
    overflow: hidden;
}

.enquiry-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(19, 108, 150, 0.05) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.enquiry-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.enquiry-header {
    margin-bottom: 44px;
}

.enquiry-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 12px auto 0 auto;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* Modern Floating Labels System */
.floating-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.floating-group input, 
.floating-group select, 
.floating-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 22px 16px 8px 16px !important;
    height: 56px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-body);
    background-color: #ffffff;
    transition: var(--transition-base);
    outline: none;
}

.floating-group textarea {
    height: auto;
    min-height: 120px;
}

/* Adjust select padding for alignment */
.floating-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%2364748b' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.floating-group label {
    position: absolute;
    left: 16px;
    top: 17px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-text-muted);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    background-color: transparent;
    transform-origin: left top;
}

.floating-group label .required {
    color: #e03131;
}

/* Focused & Active Input Floating State */
.floating-group input:focus, 
.floating-group select:focus, 
.floating-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(19, 108, 150, 0.08);
}

.floating-group input:focus ~ label,
.floating-group input:not(:placeholder-shown) ~ label,
.floating-group select:focus ~ label,
.floating-group select:valid ~ label,
.floating-group textarea:focus ~ label,
.floating-group textarea:not(:placeholder-shown) ~ label {
    transform: translateY(-9px) scale(0.75);
    color: var(--color-primary);
    font-weight: 500;
}

/* Select correction when unselected */
.floating-group select:required:invalid ~ label {
    transform: none;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.floating-group textarea {
    resize: vertical;
}

.form-actions {
    margin-top: 16px;
}

.form-notice {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 16px;
}

.form-notice i {
    margin-right: 4px;
}

/* Footer Section */
.footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 80px 0 30px 0;
    border-top: 1px solid #1e293b;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 4px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #1e293b;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    font-size: 0.9rem;
}

.social-links a:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.footer-links-group h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group ul a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links-group ul a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 30px;
    font-size: 0.85rem;
}

/* Animations System */
@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* WhatsApp Icon Pulse on Button Hover */
.btn-whatsapp:hover i {
    animation: pulse-icon 0.8s infinite alternate ease-in-out;
}

@keyframes pulse-icon {
    0% { transform: scale(1); }
    100% { transform: scale(1.3); }
}

/* Scroll & Load Reveal System */
.reveal-load, .reveal-scroll {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

/* Animation directions */
.slide-up {
    transform: translateY(30px);
}

.slide-down {
    transform: translateY(-30px);
}

.slide-right {
    transform: translateX(-40px);
}

.slide-left {
    transform: translateX(40px);
}

/* Active Class for visible state */
.reveal-load.active, .reveal-scroll.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Delay modifiers for staggered item entries */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }


/* Counselling Roadmap Styles */
.roadmap-section {
    background-color: var(--color-bg-main);
    position: relative;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    margin-top: 50px;
}

.roadmap-grid::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-gold) 100%);
    z-index: 1;
}

.roadmap-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.roadmap-number {
    width: 52px;
    height: 52px;
    background-color: #ffffff;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 20px auto;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.roadmap-step:hover .roadmap-number {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(19, 108, 150, 0.2);
}

.roadmap-step:nth-child(3) .roadmap-number {
    border-color: #8b8c66;
}
.roadmap-step:nth-child(4) .roadmap-number {
    border-color: var(--color-gold);
    color: var(--color-gold);
}
.roadmap-step:nth-child(4):hover .roadmap-number {
    background-color: var(--color-gold);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(227, 168, 48, 0.2);
}

.roadmap-step h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--color-text-title);
}

.roadmap-step p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Floating WhatsApp Button Style */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition-base);
}

.floating-whatsapp:hover {
    background-color: var(--color-whatsapp-dark);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
/* FAQ Accordion Styles */
.faq-section {
    background-color: var(--color-bg-main);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-title);
    outline: none;
    transition: var(--transition-base);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 24px;
}

.faq-answer p {
    color: var(--color-text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-bottom: 24px;
    margin: 0;
}

/* Active FAQ Item state */
.faq-item.active {
    background-color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question {
    color: var(--color-primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}


/* Responsiveness - Media Queries */

/* Tablet Screens (1024px and below) */
@media screen and (max-width: 1024px) {
    section {
        padding: 80px 0;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .location-info-panel {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .map-card-wrapper {
        justify-content: center;
    }
}

/* Mobile Screens (768px and below) */
@media screen and (max-width: 768px) {
    .logo-img {
        height: 56px;
    }

    .navbar {
        padding: 10px 0;
    }


    /* Roadmap Mobile Styling */
    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 30px;
    }

    .roadmap-grid::before {
        top: 0;
        left: 25px;
        bottom: 0;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-gold) 100%);
    }

    .roadmap-step {
        display: flex;
        text-align: left;
        gap: 20px;
        align-items: flex-start;
    }

    .roadmap-number {
        margin: 0;
        flex-shrink: 0;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

    /* Responsive Header & Drawer Navigation */
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 78px; /* navbar height */
        left: -100%;
        width: 100%;
        height: calc(100vh - 78px);
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 36px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        transition: left 0.4s ease;
        z-index: 999;
    }

    .nav-menu.show {
        left: 0;
    }

    .nav-item {
        font-size: 1.15rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-cta {
        width: 80%;
        font-size: 1.05rem;
        padding: 12px;
    }

    /* Hero layout stack */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-description {
        margin: 0 auto 32px auto;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }
    
    .floating-card {
        left: 10px;
        bottom: 10px;
    }

    /* About Us layout stack */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    /* Testimonial adjustments */
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
    }
    
    .quote-icon {
        top: 12px;
        left: 20px;
        font-size: 2rem;
    }

    /* Enquiry form styling */
    .enquiry-card {
        padding: 36px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer layout stack */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo {
        align-self: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
    }
}
