/**
 * Ajans Scripti v1 - Custom CSS
 * Modern Black & Yellow Theme
 */

:root {
    --primary-color: #FFC107;
    --primary-dark: #FFA000;
    --secondary-color: #212529;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

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

.navbar-logo {
    height: 40px;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.btn-warning {
    background-color: var(--primary-color);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-warning:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 150px 0 100px;
    margin-top: 56px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FFC107" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,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.5;
}

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

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section .highlight {
    color: var(--primary-color);
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ddd;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    margin: 0.5rem;
    transition: var(--transition);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    color: var(--text-dark);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
    background-color: var(--primary-dark);
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-custom:hover {
    background-color: white;
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    bottom: -10px;
    left: 0;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Package Cards */
.package-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

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

.package-card.featured {
    border-color: var(--primary-color);
    position: relative;
}

.package-card.featured::before {
    content: 'ÖNE ÇIKAN';
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.package-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.package-price small {
    font-size: 1rem;
    color: var(--text-light);
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Feature Boxes */
.feature-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.feature-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-light);
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    margin-top: 2rem;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

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

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1rem;
    color: white;
}

.testimonial-info h5 {
    margin: 0;
    font-weight: 600;
}

.testimonial-info small {
    color: var(--text-light);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-highlights {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: white;
}

.contact-highlight-item i {
    font-size: 1.5rem;
}

.contact-image-wrapper img {
    border-radius: 20px;
}

/* Quick Contact Cards */
.contact-cards-section {
    padding: 80px 0;
    margin-top: -50px;
}

.contact-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.contact-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.contact-card-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.contact-card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.contact-card-link:hover {
    color: var(--primary-dark);
    gap: 8px;
}

.contact-card-link i {
    transition: var(--transition);
}

.contact-card-link:hover i {
    transform: translateX(5px);
}

/* Modern Contact Form */
.contact-form-modern {
    background: white;
    padding: 0;
}

.modern-form .form-floating > .form-control,
.modern-form .form-floating > .form-select {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1rem 1.25rem;
    height: calc(3.5rem + 2px);
    font-size: 1rem;
}

.modern-form .form-floating > .form-control:focus,
.modern-form .form-floating > .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.15);
}

.modern-form .form-floating > label {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    white-space: nowrap;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modern-form textarea.form-control {
    min-height: 150px;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-info-card h4 {
    font-weight: 700;
    font-size: 1.25rem;
}

.working-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.working-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.working-hours-list li:last-child {
    border-bottom: none;
}

.working-hours-list .day {
    font-weight: 600;
    color: var(--text-dark);
}

.working-hours-list .hours {
    color: var(--text-light);
    font-weight: 500;
}

/* Social Links Modern */
.social-links-modern {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.25rem;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5dbf);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #d6249f, #ffdc7d);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

/* Accordion Modern */
.accordion-modern .accordion-item {
    border: none;
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.accordion-modern .accordion-button {
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-modern .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    color: var(--text-dark);
}

.accordion-modern .accordion-button::after {
    background-image: none;
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: auto;
    height: auto;
    background-size: auto;
}

.accordion-modern .accordion-button:not(.collapsed)::after {
    content: '\f077';
}

.accordion-modern .accordion-body {
    padding: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Map Container */
.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    filter: grayscale(20%);
    transition: var(--transition);
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }
}

/* Working Hours Info */
.working-hours-info {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Responsive Contact Page */
@media (max-width: 991px) {
    .contact-cards-section {
        margin-top: 0;
    }
    
    .contact-info-sidebar {
        position: static;
        top: auto;
    }
    
    .contact-highlights {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .contact-highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links-modern {
        justify-content: center;
    }
}

/* Modern Footer */
.modern-footer {
    background: #0a0a0a;
    color: #fff;
    position: relative;
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.newsletter-form {
    max-width: 500px;
    margin-left: auto;
}

.newsletter-form .input-group {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.newsletter-form .form-control {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px 0 0 50px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: #fff;
}

.newsletter-form .btn {
    padding: 1rem 2rem;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    white-space: nowrap;
}

/* Main Footer */
.footer-main {
    padding: 80px 0 40px;
    background: #0a0a0a;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-size: 1.75rem;
    letter-spacing: 1px;
}

.footer-text {
    color: #999;
    line-height: 1.8;
}

/* Footer Stats */
.footer-stat h4 {
    font-size: 1.75rem;
}

.footer-stat small {
    display: block;
    color: #666;
    font-size: 0.875rem;
}

/* Footer Widget Title */
.footer-widget-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #999;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a i {
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 0.75rem;
    transition: var(--transition);
}

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

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 20px;
    color: #999;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-right: 15px;
    margin-top: 3px;
    width: 20px;
}

.footer-contact li div {
    flex: 1;
}

.footer-contact li strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.footer-contact li span {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: 0;
}

.social-icon i {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5dbf);
}

.social-icon.twitter {
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #e4405f, #d6249f, #ffdc7d);
}

.social-icon.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.social-icon.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-icon:hover::before {
    opacity: 0;
}

/* Footer Bottom */
.footer-bottom {
    background: #000;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 193, 7, 0.1);
}

.footer-bottom p {
    color: #999;
    font-size: 0.95rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links li a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.footer-bottom-links li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.footer-bottom-links li a:hover {
    color: var(--primary-color);
}

.footer-bottom-links li a:hover::after {
    width: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-newsletter {
        padding: 40px 0;
    }
    
    .footer-main {
        padding: 60px 0 30px;
    }
    
    .newsletter-form {
        margin-left: 0;
    }
    
    .footer-widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .footer-links a,
    .footer-contact li {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .newsletter-form .btn {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 120px 0 60px;
    margin-top: 56px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #ddd;
}

/* Modern Page Header */
.page-header-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 140px 0 80px;
    margin-top: 56px;
    position: relative;
    overflow: hidden;
}

.page-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FFC107" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,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 center;
    background-size: cover;
}

.breadcrumb-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #ddd;
}

.breadcrumb-modern a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-modern a:hover {
    color: var(--primary-dark);
}

.breadcrumb-modern i {
    font-size: 0.75rem;
}

.header-image-wrapper {
    position: relative;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 2rem;
}

.floating-badge strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.floating-badge span {
    display: block;
    font-size: 0.9rem;
    color: #999;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.stat-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon-modern {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
}

.stat-content-modern {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    display: block;
}

/* Story Section */
.story-image-wrapper {
    position: relative;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.experience-number {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.experience-text {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(255, 193, 7, 0.6);
    }
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-list-item i {
    font-size: 1.25rem;
}

/* Vision Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.vm-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.vm-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.vm-icon-wrapper {
    margin-bottom: 2rem;
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.vm-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.vm-description {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.vm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-list li {
    color: #ddd;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.vm-list i {
    font-size: 1.1rem;
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.value-icon-wrapper {
    margin-bottom: 1.5rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

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

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card-modern:hover .team-image-wrapper img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card-modern:hover .team-overlay {
    opacity: 1;
}

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

.team-social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
}

.team-card-modern:hover .team-social-link {
    transform: translateY(0);
    opacity: 1;
}

.team-social-link:nth-child(1) {
    transition-delay: 0.1s;
}

.team-social-link:nth-child(2) {
    transition-delay: 0.2s;
}

.team-social-link:nth-child(3) {
    transition-delay: 0.3s;
}

.team-social-link:hover {
    background: white;
    color: var(--text-dark);
    transform: translateY(0) scale(1.1);
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section Modern */
.cta-section-modern {
    padding: 80px 0;
}

.cta-card-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 30px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FFC107" fill-opacity="0.08" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,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 center;
    background-size: cover;
    z-index: 0;
}

.cta-card-modern .row {
    position: relative;
    z-index: 1;
}

.cta-card-modern .btn {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description {
    color: #ddd;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}

.cta-feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.btn-cta {
    min-width: 200px;
    display: block;
    margin: 0 auto;
}

/* Responsive About Page */
@media (max-width: 991px) {
    .page-header-modern {
        padding: 100px 0 60px;
    }
    
    .floating-badge {
        bottom: 20px;
        left: 20px;
        padding: 1rem;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        top: 20px;
        right: 20px;
    }
    
    .vm-card {
        padding: 2rem;
    }
    
    .cta-card-modern {
        padding: 3rem 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .stat-card-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-cta {
        min-width: auto;
        width: 100%;
    }
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-hero {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
}

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

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

.hover-scale {
    transition: var(--transition);
}

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

/* Loading Spinner */
.spinner-border-custom {
    color: var(--primary-color);
}

/* ===================================
   PACKAGES PAGE - MODERN STYLES
   =================================== */

/* Package Header Highlights */
.package-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.package-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.package-highlight-item i {
    font-size: 1.2rem;
}

/* Pricing Badge */
.pricing-badge {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.3);
    animation: float 3s ease-in-out infinite;
}

.pricing-badge-content {
    color: #000;
}

.badge-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.badge-price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
}

.badge-subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Modern Package Cards */
.packages-modern-section {
    padding: 80px 0;
}

.package-card-modern {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.package-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.package-card-modern.featured-modern {
    border: 2px solid #FFC107;
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF9E6 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.package-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 2rem;
}

.package-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.package-price-modern {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.package-price-modern .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFC107;
    margin-top: 0.5rem;
}

.package-price-modern .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.package-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.package-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.package-features-modern li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.package-features-modern li:last-child {
    border-bottom: none;
}

.package-features-modern i {
    color: #28a745;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.package-features-modern span {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.package-footer {
    margin-top: auto;
}

/* Features Comparison Section */
.features-comparison-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.feature-item-modern {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.feature-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-item-modern h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

/* Custom Package CTA */
.custom-package-cta {
    padding: 80px 0;
}

.custom-package-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 25px;
    padding: 3rem;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.custom-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    flex-shrink: 0;
}

.custom-package-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

.custom-package-card .lead {
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive Packages Page */
@media (max-width: 991px) {
    .pricing-badge {
        margin-top: 2rem;
    }
    
    .package-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .package-price-modern .amount {
        font-size: 2.5rem;
    }
    
    .custom-package-card {
        text-align: center;
    }
    
    .custom-icon {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 768px) {
    .badge-price {
        font-size: 2.5rem;
    }
    
    .package-card-modern {
        padding: 2rem;
    }
    
    .package-title {
        font-size: 1.5rem;
    }
    
    .package-price-modern .amount {
        font-size: 2rem;
    }
    
    .feature-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .custom-package-card {
        padding: 2rem;
    }
}

/* ===================================
   HOMEPAGE - MODERN STYLES
   =================================== */

/* Hero Section Modern */
.hero-section-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 150px 0 100px;
    margin-top: 56px;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature-item i {
    color: #FFC107;
    font-size: 1.2rem;
}

.hero-buttons-modern {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
}

.hero-floating-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card i {
    font-size: 2rem;
}

.hero-floating-card h6 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.hero-floating-card small {
    color: var(--text-light);
}

/* Animated Background Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float-shape 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    border-radius: 50%;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 20%;
    left: 5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    border-radius: 50%;
    top: 50%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Featured Packages Section */
.featured-packages-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
}

.feature-box-modern {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.feature-box-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #FFC107;
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
}

.feature-title-modern {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Testimonials Section Modern */
.testimonials-section-modern {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.testimonial-card-modern {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #FFC107;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    color: #FFC107;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    font-size: 1rem;
    margin-right: 0.2rem;
}

.testimonial-content-modern {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.testimonial-avatar-modern {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #FFC107;
}

.testimonial-info-modern h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

/* CTA Section Home */
.cta-section-home {
    padding: 80px 0;
}

.cta-card-home {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 30px;
    padding: 4rem;
    color: white;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-card-home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,193,7,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.cta-title-home {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description-home {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-features-home {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-feature-home {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-feature-home i {
    color: #FFC107;
    font-size: 1.2rem;
}

/* Responsive Homepage */
@media (max-width: 991px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-buttons-modern {
        flex-direction: column;
    }
    
    .hero-buttons-modern .btn {
        width: 100%;
    }
    
    .hero-floating-card {
        right: 50%;
        transform: translateX(50%);
        bottom: -30px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-card-home {
        padding: 2.5rem;
        text-align: center;
    }
    
    .cta-features-home {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section-modern {
        padding: 100px 0 80px;
    }
    
    .hero-title-modern {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-title-home {
        font-size: 1.8rem;
    }
    
    .cta-features-home {
        flex-direction: column;
        gap: 1rem;
    }
}


/* ========================================
   BLOG PAGE STYLES
   ======================================== */

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 193, 7, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.blog-hero .hero-badge {
    background: rgba(255, 193, 7, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #FFC107;
    font-weight: 700;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.blog-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.blog-hero .hero-title .text-warning {
    color: #FFC107 !important;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.3);
}

.blog-hero .hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
}

.blog-hero .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.blog-hero .stat-item {
    text-align: center;
}

.blog-hero .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFC107;
}

.blog-hero .stat-label {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.blog-hero .hero-illustration {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero .illustration-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero .central-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.4);
    animation: floatCentral 3s ease-in-out infinite;
    z-index: 2;
}

.blog-hero .central-icon i {
    font-size: 5rem;
    color: #1a1a1a;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.blog-hero .floating-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.blog-hero .floating-element i {
    font-size: 2rem;
    color: #FFC107;
}

.blog-hero .element-1 {
    top: 20%;
    left: 10%;
    animation: float1 4s ease-in-out infinite;
    transform: rotate(-10deg);
}

.blog-hero .element-2 {
    top: 15%;
    right: 15%;
    animation: float2 5s ease-in-out infinite;
    transform: rotate(15deg);
}

.blog-hero .element-3 {
    bottom: 20%;
    left: 15%;
    animation: float3 4.5s ease-in-out infinite;
    transform: rotate(-15deg);
}

@keyframes floatCentral {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0) rotate(-10deg);
    }
    50% {
        transform: translateY(-30px) rotate(-5deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0) rotate(15deg);
    }
    50% {
        transform: translateY(-25px) rotate(20deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0) rotate(-15deg);
    }
    50% {
        transform: translateY(-35px) rotate(-10deg);
    }
}

/* Category Filters */
.blog-categories-section {
    padding: 2.5rem 0;
    background: #f8f9fa;
    border-bottom: 3px solid #FFC107;
}

.categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.category-btn {
    padding: 0.875rem 1.75rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    text-decoration: none;
    color: #495057;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    border-color: #FFC107;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

/* Featured Posts Section */
.featured-posts-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Blog Cards */
.blog-card-featured,
.blog-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.blog-card-featured:hover,
.blog-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.3);
    border-color: #FFC107;
}

.blog-card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: #1a1a1a;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    font-size: 1.125rem;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    display: block;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card-featured:hover .blog-card-image img,
.blog-card-modern:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.95) 0%, rgba(255, 152, 0, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s;
}

.blog-card-modern:hover .blog-card-overlay {
    opacity: 1;
}

.blog-card-overlay i {
    font-size: 2.5rem;
    color: #1a1a1a;
    animation: bounceRight 0.6s ease-in-out;
}

@keyframes bounceRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.blog-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-category {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.813rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

.blog-date,
.blog-views {
    font-size: 0.875rem;
    color: #6c757d;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: #212529;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: #6c757d;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.blog-author {
    font-size: 0.875rem;
    color: #495057;
    font-weight: 600;
}

.blog-read-more {
    color: #FF9800;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more:hover {
    color: #FFC107;
    gap: 0.75rem;
}

.blog-read-more i {
    transition: transform 0.3s;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-meta-small {
    display: flex;
    gap: 1rem;
    font-size: 0.813rem;
    color: #6c757d;
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 4rem 0;
    background: white;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.page-item {
    list-style: none;
}

.page-link {
    padding: 0.875rem 1.5rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    color: #495057;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-width: 50px;
    text-align: center;
}

.page-link:hover,
.page-item.active .page-link {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    border-color: #FFC107;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* Blog Detail */
.blog-detail-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.blog-detail-hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 193, 7, 0.05);
    border-radius: 50%;
    top: 50px;
    left: -50px;
    animation: float 8s ease-in-out infinite;
}

.blog-detail-hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 152, 0, 0.05);
    border-radius: 50%;
    bottom: 50px;
    right: 100px;
    animation: float 6s ease-in-out infinite reverse;
}

.blog-detail-hero .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 1rem;
}

.blog-detail-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.blog-detail-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
}

.blog-hero-content .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 1rem;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: #1a1a1a;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transition: all 0.3s;
}

.category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    color: #1a1a1a;
}

.blog-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.938rem;
}

.meta-item i {
    color: #FFC107;
}

.blog-featured-image {
    margin: 3rem 0;
}

.blog-featured-image img {
    width: 100%;
    border-radius: 20px;
}

.blog-content-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.blog-excerpt {
    padding-bottom: 2rem;
    border-bottom: 2px solid #f8f9fa;
    margin-bottom: 2rem;
}

.blog-content {
    line-height: 1.8;
    color: #495057;
}

.blog-content h3 {
    color: #212529;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.75rem;
}

.blog-tags,
.blog-share {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f8f9fa;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag-badge {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #495057;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

/* Related Posts Section */
.related-posts-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Empty State */
.empty-blog-state {
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.empty-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fff5e1 0%, #ffe8b8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3.5rem;
    color: #FFC107;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2);
}

.empty-blog-state h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.empty-blog-state p {
    color: #6c757d;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Responsive Blog */
@media (max-width: 992px) {
    .blog-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .blog-hero .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 60px 0 40px;
    }
    
    .blog-hero .hero-title {
        font-size: 2rem;
    }
    
    .blog-hero .hero-description {
        font-size: 1rem;
    }
    
    .blog-hero .hero-stats {
        gap: 2rem;
    }
    
    .blog-hero .stat-value {
        font-size: 1.75rem;
    }
    
    .blog-hero .hero-illustration {
        height: 300px;
        margin-top: 2rem;
    }
    
    .blog-hero .central-icon {
        width: 150px;
        height: 150px;
    }
    
    .blog-hero .central-icon i {
        font-size: 3.5rem;
    }
    
    .blog-hero .floating-element {
        width: 60px;
        height: 60px;
    }
    
    .blog-hero .floating-element i {
        font-size: 1.5rem;
    }
    
    .blog-hero-title {
        font-size: 1.75rem;
    }
    
    .blog-content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .categories-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
    }
    
    .category-btn {
        flex-shrink: 0;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .featured-posts-section,
    .blog-posts-section {
        padding: 2.5rem 0;
    }
    
    .pagination {
        gap: 0.5rem;
    }
    
    .page-link {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   ABOUT PAGE 3D ILLUSTRATION
   ======================================== */

.about-illustration {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-illustration .illustration-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-illustration .central-icon {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    animation: floatCentral 3s ease-in-out infinite;
    z-index: 2;
    border: 5px solid rgba(255, 193, 7, 0.2);
}

.about-illustration .central-icon i {
    font-size: 6rem;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.3));
}

.about-illustration .floating-element {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 193, 7, 0.3);
}

.about-illustration .floating-element i {
    font-size: 2.5rem;
    color: #FF9800;
}

.about-illustration .element-1 {
    top: 10%;
    left: 5%;
    animation: float1 4s ease-in-out infinite;
    transform: rotate(-12deg);
}

.about-illustration .element-2 {
    top: 8%;
    right: 8%;
    animation: float2 5s ease-in-out infinite;
    transform: rotate(18deg);
}

.about-illustration .element-3 {
    bottom: 15%;
    left: 8%;
    animation: float3 4.5s ease-in-out infinite;
    transform: rotate(-18deg);
}

.about-illustration .element-4 {
    bottom: 10%;
    right: 12%;
    animation: float4 5.5s ease-in-out infinite;
    transform: rotate(12deg);
}

.about-illustration .floating-badge-3d {
    position: absolute;
    bottom: 30%;
    right: -5%;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.4);
    z-index: 3;
    animation: floatBadge 4s ease-in-out infinite;
    border: 4px solid rgba(255, 255, 255, 0.5);
}

.about-illustration .floating-badge-3d i {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.about-illustration .floating-badge-3d div {
    display: flex;
    flex-direction: column;
    color: #1a1a1a;
}

.about-illustration .floating-badge-3d strong {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.about-illustration .floating-badge-3d span {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.8;
}

@keyframes float4 {
    0%, 100% {
        transform: translateY(0) rotate(12deg);
    }
    50% {
        transform: translateY(-28px) rotate(17deg);
    }
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

/* Responsive About Illustration */
@media (max-width: 992px) {
    .about-illustration {
        height: 400px;
    }
    
    .about-illustration .central-icon {
        width: 180px;
        height: 180px;
    }
    
    .about-illustration .central-icon i {
        font-size: 4.5rem;
    }
    
    .about-illustration .floating-element {
        width: 75px;
        height: 75px;
    }
    
    .about-illustration .floating-element i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-illustration {
        height: 350px;
        margin-top: 3rem;
    }
    
    .about-illustration .central-icon {
        width: 160px;
        height: 160px;
    }
    
    .about-illustration .central-icon i {
        font-size: 4rem;
    }
    
    .about-illustration .floating-element {
        width: 65px;
        height: 65px;
    }
    
    .about-illustration .floating-element i {
        font-size: 1.75rem;
    }
    
    .about-illustration .floating-badge-3d {
        padding: 1rem 1.5rem;
        bottom: 20%;
        right: 0;
    }
    
    .about-illustration .floating-badge-3d i {
        font-size: 2rem;
    }
    
    .about-illustration .floating-badge-3d strong {
        font-size: 1.5rem;
    }
    
    .about-illustration .floating-badge-3d span {
        font-size: 0.75rem;
    }
}

/* ========================================
   STORY SECTION 3D ILLUSTRATION
   ======================================== */

.story-illustration {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-illustration .illustration-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-illustration .central-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 70px rgba(255, 193, 7, 0.4);
    animation: floatCentral 3s ease-in-out infinite;
    z-index: 2;
    transform: rotate(-5deg);
}

.story-illustration .central-icon i {
    font-size: 5rem;
    color: #1a1a1a;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.story-illustration .floating-element {
    position: absolute;
    width: 85px;
    height: 85px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 3px solid #FFC107;
}

.story-illustration .floating-element i {
    font-size: 2.25rem;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-illustration .story-element-1 {
    top: 12%;
    left: 8%;
    animation: float1 4s ease-in-out infinite;
    transform: rotate(-8deg);
}

.story-illustration .story-element-2 {
    top: 10%;
    right: 12%;
    animation: float2 5s ease-in-out infinite;
    transform: rotate(15deg);
}

.story-illustration .story-element-3 {
    bottom: 18%;
    right: 10%;
    animation: float3 4.5s ease-in-out infinite;
    transform: rotate(-12deg);
}

.story-illustration .experience-badge-3d {
    position: absolute;
    bottom: 8%;
    left: 5%;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 3;
    animation: floatBadge 4s ease-in-out infinite;
    border: 4px solid #FFC107;
}

.story-illustration .experience-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.story-illustration .experience-text {
    font-size: 0.938rem;
    font-weight: 700;
    color: #495057;
    text-align: center;
}

/* Responsive Story Illustration */
@media (max-width: 992px) {
    .story-illustration {
        height: 400px;
    }
    
    .story-illustration .central-icon {
        width: 170px;
        height: 170px;
    }
    
    .story-illustration .central-icon i {
        font-size: 4rem;
    }
    
    .story-illustration .floating-element {
        width: 70px;
        height: 70px;
    }
    
    .story-illustration .floating-element i {
        font-size: 1.875rem;
    }
}

@media (max-width: 768px) {
    .story-illustration {
        height: 350px;
        margin-bottom: 2rem;
    }
    
    .story-illustration .central-icon {
        width: 150px;
        height: 150px;
    }
    
    .story-illustration .central-icon i {
        font-size: 3.5rem;
    }
    
    .story-illustration .floating-element {
        width: 60px;
        height: 60px;
    }
    
    .story-illustration .floating-element i {
        font-size: 1.5rem;
    }
    
    .story-illustration .experience-badge-3d {
        padding: 1rem 1.5rem;
    }
    
    .story-illustration .experience-number {
        font-size: 2rem;
    }
    
    .story-illustration .experience-text {
        font-size: 0.813rem;
    }
}

/* ========================================
   CONTACT PAGE 3D ILLUSTRATION
   ======================================== */

.contact-illustration {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-illustration .illustration-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-illustration .central-icon {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(255, 193, 7, 0.5);
    animation: floatCentral 3s ease-in-out infinite;
    z-index: 3;
    position: relative;
}

.contact-illustration .central-icon i {
    font-size: 6rem;
    color: #1a1a1a;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.contact-illustration .pulse-ring,
.contact-illustration .pulse-ring-2 {
    position: absolute;
    border: 4px solid rgba(255, 193, 7, 0.6);
    border-radius: 50%;
    animation: pulse 3s ease-out infinite;
    z-index: 2;
}

.contact-illustration .pulse-ring {
    width: 220px;
    height: 220px;
}

.contact-illustration .pulse-ring-2 {
    width: 220px;
    height: 220px;
    animation: pulse 3s ease-out infinite 1.5s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.contact-illustration .floating-element {
    position: absolute;
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid #FFC107;
    z-index: 4;
}

.contact-illustration .floating-element i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-illustration .contact-element-1 {
    top: 8%;
    left: 12%;
    animation: float1 4s ease-in-out infinite;
    transform: rotate(-10deg);
}

.contact-illustration .contact-element-2 {
    top: 10%;
    right: 10%;
    animation: float2 5s ease-in-out infinite;
    transform: rotate(12deg);
}

.contact-illustration .contact-element-3 {
    bottom: 12%;
    left: 8%;
    animation: float3 4.5s ease-in-out infinite;
    transform: rotate(-15deg);
}

.contact-illustration .contact-element-4 {
    bottom: 15%;
    right: 12%;
    animation: float4 5.5s ease-in-out infinite;
    transform: rotate(10deg);
}

/* Responsive Contact Illustration */
@media (max-width: 992px) {
    .contact-illustration {
        height: 420px;
    }
    
    .contact-illustration .central-icon {
        width: 180px;
        height: 180px;
    }
    
    .contact-illustration .central-icon i {
        font-size: 4.5rem;
    }
    
    .contact-illustration .pulse-ring,
    .contact-illustration .pulse-ring-2 {
        width: 180px;
        height: 180px;
    }
    
    .contact-illustration .floating-element {
        width: 75px;
        height: 75px;
    }
    
    .contact-illustration .floating-element i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-illustration {
        height: 370px;
        margin-top: 3rem;
    }
    
    .contact-illustration .central-icon {
        width: 160px;
        height: 160px;
    }
    
    .contact-illustration .central-icon i {
        font-size: 4rem;
    }
    
    .contact-illustration .pulse-ring,
    .contact-illustration .pulse-ring-2 {
        width: 160px;
        height: 160px;
    }
    
    .contact-illustration .floating-element {
        width: 65px;
        height: 65px;
    }
    
    .contact-illustration .floating-element i {
        font-size: 1.75rem;
    }
}

/* ========================================
   PAGE LOADER
======================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spinner-modern {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    position: relative;
}

.spinner-modern::before,
.spinner-modern::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
}

.spinner-modern::before {
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 193, 7, 0.2);
}

.spinner-modern::after {
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #FFC107;
    animation: spin 1s linear infinite;
}

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

.loader-text {
    color: #FFC107;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
    animation: pulse 1.5s ease-in-out infinite;
}

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