/* ============== ADDITIONAL MODERN TEXT & LINK HOVER EFFECTS ============== */

/* Smooth Link Hover */
a {
    transition: var(--transition);
    position: relative;
}

a:not(.btn):not(.nav-link):not(.dropdown-menu a):hover {
    color: var(--secondary-color);
}

/* Gradient Text Animation */
.text-gradient {
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% {
        background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
    }
    50% {
        background: linear-gradient(120deg, var(--secondary-color), var(--primary-color));
        -webkit-background-clip: text;
    }
    100% {
        background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
    }
}

/* Underline Animation */
.underline-animated {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    color: var(--text-dark);
}

.underline-animated::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

.underline-animated:hover {
    color: var(--primary-color);
}

.underline-animated:hover::after {
    width: 100%;
}

/* Scale on Hover */
.scale-on-hover {
    transition: transform var(--transition-smooth);
    display: inline-block;
}

.scale-on-hover:hover {
    transform: scale(1.08);
}

/* Shadow on Hover */
.shadow-on-hover {
    transition: box-shadow var(--transition);
}

.shadow-on-hover:hover {
    box-shadow: var(--shadow-xl);
}

/* Smooth Background Transition */
.bg-hover-smooth {
    background: var(--white);
    transition: all var(--transition-smooth);
}

.bg-hover-smooth:hover {
    background: linear-gradient(135deg, rgba(146, 97, 170, 0.05), rgba(21, 101, 192, 0.05));
}

/* Icon Spin on Hover */
.icon-spin:hover {
    animation: spinIcon 0.6s ease;
}

@keyframes spinIcon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Highlight Background on Hover */
.highlight-on-hover {
    padding: 2px 6px;
    border-radius: 4px;
    transition: all var(--transition);
}

.highlight-on-hover:hover {
    background: rgba(146, 97, 170, 0.15);
    color: var(--primary-color);
    font-weight: 600;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.bounce-on-hover:hover {
    animation: bounce 0.6s ease;
}

/* Glow Effect */
.glow-on-hover {
    transition: text-shadow var(--transition);
}

.glow-on-hover:hover {
    text-shadow: 0 0 20px rgba(146, 97, 170, 0.6);
}

/* Ripple Effect on Click (requires JS) */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Slide In Text */
.slide-in-text {
    position: relative;
    overflow: hidden;
}

.slide-in-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.slide-in-text:hover::before {
    left: 100%;
}

/* Fade In and Scale */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-scale {
    animation: fadeInScale 0.4s ease;
}

/* ============== LAYOUT & SPACING UTILITIES ============== */

/* Section Spacing */
.section-spaced {
    padding: 100px 0;
}

.section-spaced-lg {
    padding: 120px 0;
}

.section-spaced-sm {
    padding: 60px 0;
}

/* Margin Top */
.mt-60 { margin-top: 60px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-25 { margin-top: 25px !important; }
.mt-20 { margin-top: 20px !important; }

/* Margin Bottom */
.mb-80 { margin-bottom: 80px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-25 { margin-bottom: 25px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-12 { margin-bottom: 12px !important; }

/* Padding */
.p-40 { padding: 40px; }
.p-50 { padding: 50px; }

/* Text Alignment */
.text-center-custom { text-align: center; }
.text-left-custom { text-align: left; }

/* ============== BACKGROUND & COLOR UTILITIES ============== */

/* Gradient Backgrounds */
.bg-gradient-subtle {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, rgba(26, 54, 93, 0.05) 100%);
}

.bg-subtle-white {
    background: rgba(255, 255, 255, 0.92);
}

.bg-card-white {
    background: rgba(255, 255, 255, 0.95);
}

.bg-card-light {
    background: rgba(255, 255, 255, 0.85);
}

/* Text Colors */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }

/* Accent Color Inline */
.accent-colored {
    color: #c9a227;
}

/* ============== BORDER & SHADOW UTILITIES ============== */

/* Borders */
.border-left-accent {
    border-left: 5px solid var(--secondary-color);
}

.border-left-accent-thick {
    border-left: 5px solid var(--secondary-color);
}

/* Shadows */
.shadow-box { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); }
.shadow-card { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); }
.shadow-card-lg { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); }

/* ============== BORDER RADIUS UTILITIES ============== */

.rounded-lg { border-radius: 15px; }
.rounded-xl { border-radius: 20px; }

/* ============== TYPOGRAPHY UTILITIES ============== */

/* Font Sizes */
.text-heading-lg { font-size: 2.2rem; font-weight: 900; }
.text-heading-md { font-size: 1.8rem; font-weight: 900; }
.text-heading-sm { font-size: 1.6rem; font-weight: 700; }
.text-subheading { font-size: 1.5rem; font-weight: 700; }
.text-section-title { font-size: 1.4rem; font-weight: 700; }
.text-large { font-size: 1.3rem; }
.text-normal { font-size: 1rem; }
.text-small { font-size: 0.9rem; }

/* Font Weight */
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-italic { font-style: italic; }

/* Line Height */
.line-tight { line-height: 1.3; }
.line-normal { line-height: 1.6; }
.line-relaxed { line-height: 1.8; }
.line-loose { line-height: 1.9; }

/* ============== DISPLAY & VISIBILITY UTILITIES ============== */

.hidden-svg { display: none; }
.block-icon { display: block; }

/* ============== IMAGE UTILITIES ============== */

.logo-img-sm { height: 50px; width: auto; }
.logo-img-md { height: 80px; width: auto; display: block; }
.logo-img-lg { height: 100px; width: auto; }

/* ============== COMPONENT-SPECIFIC UTILITIES ============== */

/* Mobile Toggle Icon */
.mobile-icon {
    width: 24px;
    height: 24px;
}

/* Motto Box */
.motto-box {
    margin-top: 60px;
    padding: 40px;
    background: rgba(26, 54, 93, 0.08);
    border-left: 5px solid var(--secondary-color);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.motto-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.motto-text {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 700;
    font-style: italic;
}

.motto-description {
    margin-top: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Content Box */
.content-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.content-box h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 900;
}

.content-box-subtitle {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-weight: 600;
}

.content-section {
    margin-bottom: 80px;
}

.content-section-title {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 25px;
}

/* ============== LIST UTILITIES ============== */

.list-items {
    margin-bottom: 30px;
    margin-left: 20px;
}

.list-item {
    margin-bottom: 12px;
}

.list-item strong {
    font-weight: 700;
}

/* ============== FOOTER UTILITIES ============== */

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
    display: block;
}

.footer-accent {
    color: #c9a227;
}

/* ============== MODERN BOX STYLES ============== */

/* Info Card / Alert Box */
.info-card {
    margin-bottom: 80px;
}

.info-card-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

/* ============== RESPONSIVE UTILITIES ============== */

@media (max-width: 768px) {
    .section-spaced {
        padding: 60px 0;
    }
    
    .text-heading-lg {
        font-size: 1.8rem;
    }
    
    .content-box {
        padding: 30px;
    }
    
    .p-40 { padding: 30px; }
    .p-50 { padding: 30px; }
}
