/* =================================
   WARCRAFT THEME - CUSTOM CSS
   ================================= */

/* Color Variables */
:root {
    --primary-color: #007bff; /* Biru Cerah */
    --secondary-color: #39ff14; /* Hijau Neon Terang */
    --dark-blue: #001a33; /* Biru Sangat Tua */
    --darker-blue: #000d1a; /* Latar Belakang Paling Gelap */
    --gold: #00ff99; /* Hijau/Cyan Neon (Untuk Garis/Border) */
    --light-gold: #b3ffb3; /* Hijau Neon Sangat Cerah */
    --text-light: #e0e0e0;
    --text-dark: #1a1a1a;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-light);
    background-color: var(--darker-blue);
    overflow-x: hidden;
}

/* Scrollbar Custom */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Navbar Styles */
.navbar {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--gold);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--light-gold) !important;
    transform: scale(1.05);
}

.brand-text {
    letter-spacing: 2px;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

.search-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--gold);
    color: var(--text-light);
    border-radius: 20px;
    padding: 8px 15px;
}

.search-input:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary-color);
    color: var(--text-light);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker-blue) 50%, #1a0033 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(13, 71, 161, 0.2) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--darker-blue) 100%);
}

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

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

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

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    border: 2px solid var(--gold);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1565c0, var(--primary-color));
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--gold);
    color: var(--text-light);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--gold);
    color: var(--dark-blue);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.9;
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg, var(--darker-blue) 0%, var(--dark-blue) 100%);
    padding: 80px 0;
}

.feature-card {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.2), rgba(10, 35, 66, 0.4));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.3), rgba(10, 35, 66, 0.5));
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #1565c0, var(--primary-color));
}

.feature-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Carousel Section */
.carousel-section {
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
    padding: 80px 0;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.2), rgba(10, 35, 66, 0.4));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 50px;
    margin: 20px auto;
    max-width: 800px;
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author h5 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border: 2px solid var(--gold);
    border-radius: 50%;
    padding: 20px;
}

.carousel-indicators button {
    background-color: var(--gold) !important;
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--darker-blue) 0%, #000000 100%);
    border-top: 3px solid var(--gold);
    color: var(--text-light);
}

.footer-title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-heading {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-text {
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--gold), var(--secondary-color));
    color: var(--dark-blue);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-divider {
    border-color: rgba(212, 175, 55, 0.3);
    margin: 30px 0;
}

.copyright {
    color: var(--text-light);
    opacity: 0.7;
    margin: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
    padding: 150px 0 80px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
}

.breadcrumb-item {
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gold);
}

/* About Page Styles */
.personal-info {
    background: linear-gradient(180deg, var(--darker-blue) 0%, var(--dark-blue) 100%);
}

.about-image img {
    border: 5px solid var(--gold);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.mv-card {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.2), rgba(10, 35, 66, 0.4));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.mv-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.mv-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.mv-card i {
    margin-right: 10px;
}

.mv-card p {
    color: var(--text-light);
    margin: 0;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--gold), var(--secondary-color));
    color: var(--dark-blue);
    transform: translateY(-5px) rotate(360deg);
}

/* Skills Section */
.skills-section {
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
}

.skill-item {
    margin-bottom: 25px;
}

.skill-name {
    color: var(--secondary-color);
    font-weight: 600;
}

.skill-percentage {
    color: var(--gold);
    font-weight: 600;
}

.skill-progress {
    height: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress .progress-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--gold));
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Timeline Section */
.timeline-section {
    background: linear-gradient(180deg, var(--darker-blue) 0%, var(--dark-blue) 100%);
}

.accordion-item {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.2), rgba(10, 35, 66, 0.4));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px !important;
    margin-bottom: 20px;
}

.accordion-button {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.3), rgba(10, 35, 66, 0.5));
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.2rem;
    border: none;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    color: var(--secondary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--gold);
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(77%) sepia(79%) saturate(445%) hue-rotate(359deg) brightness(104%) contrast(103%);
}

.accordion-body {
    background: rgba(10, 35, 66, 0.3);
    color: var(--text-light);
    padding: 30px;
}

.timeline-item {
    padding: 20px;
    margin-bottom: 25px;
    border-left: 3px solid var(--gold);
    padding-left: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 25px;
    width: 13px;
    height: 13px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

.timeline-item h5 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-date,
.timeline-place {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.timeline-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Portfolio Page Styles */
.portfolio-section {
    background: linear-gradient(180deg, var(--darker-blue) 0%, var(--dark-blue) 100%);
}

.portfolio-filter {
    border: none;
    gap: 10px;
}

.portfolio-filter .nav-link {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.2), rgba(10, 35, 66, 0.4));
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-filter .nav-link:hover,
.portfolio-filter .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    border-color: var(--gold);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.portfolio-card {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.2), rgba(10, 35, 66, 0.4));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 35, 66, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.portfolio-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.portfolio-badges .badge {
    margin-right: 8px;
    padding: 8px 15px;
    font-weight: 500;
    font-size: 0.85rem;
}

/* Modal Styles */
.modal-content {
    background: linear-gradient(135deg, var(--dark-blue), var(--darker-blue));
    border: 2px solid var(--gold);
    color: var(--text-light);
}

.modal-header {
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.modal-title {
    color: var(--secondary-color);
    font-weight: 600;
}

.modal-body h6 {
    color: var(--secondary-color);
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-body p {
    color: var(--text-light);
}

.modal-body ul {
    color: var(--text-light);
}

.btn-close {
    filter: brightness(0) saturate(100%) invert(77%) sepia(79%) saturate(445%) hue-rotate(359deg) brightness(104%) contrast(103%);
}

/* Contact Page Styles */
.contact-section {
    background: linear-gradient(180deg, var(--darker-blue) 0%, var(--dark-blue) 100%);
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.2), rgba(10, 35, 66, 0.4));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px;
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--text-light);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-select option {
    background-color: var(--dark-blue);
    color: var(--text-light);
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--gold);
}

.form-check-label {
    color: var(--text-light);
}

.form-check-label a {
    color: var(--secondary-color);
}

.invalid-feedback,
.valid-feedback {
    font-weight: 500;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.is-valid {
    border-color: #28a745 !important;
}

/* Contact Info Items */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(13, 71, 161, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(13, 71, 161, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.contact-details h5 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

.social-links-contact {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Map Styles */
.map-wrapper {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.2), rgba(10, 35, 66, 0.4));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Alert Styles */
.alert {
    border-radius: 15px;
    border: 2px solid;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(40, 167, 69, 0.1));
    border-color: #28a745;
    color: #d4edda;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2), rgba(220, 53, 69, 0.1));
    border-color: #dc3545;
    color: #f8d7da;
}

.alert-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1));
    border-color: #ffc107;
    color: #fff3cd;
}

/* Toast Styles */
.toast {
    background: linear-gradient(135deg, var(--dark-blue), var(--darker-blue));
    border: 2px solid var(--gold);
    color: var(--text-light);
}

.toast-header {
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    border-bottom: 2px solid var(--gold);
    color: var(--secondary-color);
}

.toast-body {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }

    .feature-card,
    .portfolio-card,
    .contact-form-wrapper,
    .contact-info-wrapper {
        margin-bottom: 30px;
    }

    .social-icons,
    .social-links {
        justify-content: center;
    }

    .portfolio-filter {
        flex-direction: column;
        align-items: center;
    }

    .portfolio-filter .nav-item {
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto 15px;
    }
}

/* Loading Animation */
@keyframes spin {
    0% { 
        transform: rotate(0deg); 
    }
    100% { 
        transform: rotate(360deg); 
    }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* Utility Classes */
.text-gold {
    color: var(--gold) !important;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color), #1565c0) !important;
}

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

/* Custom Scrollbar for Modal */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--darker-blue);
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Badge Animations */
.badge {
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.1);
}

/* Portfolio Item Animation */
.portfolio-item {
    transition: all 0.3s ease;
}

/* End of CSS */