/**
 * 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);
    margin-top: 0 !important;
}

.navbar.sticky-top {
    top: 0;
    margin-top: 0;
}

/* Navbar CTA Button */
.btn-navbar-cta {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    color: #1a1a1a;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.938rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    color: #1a1a1a;
    background: linear-gradient(135deg, #FFA000 0%, #FF8F00 100%);
}

.btn-navbar-cta:active {
    transform: translateY(0px);
}

.btn-navbar-cta i {
    font-size: 1rem;
}

@media (max-width: 991px) {
    .btn-navbar-cta {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

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

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

.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 */
/* ========================================
   CTA SECTION ULTIMATE - Separate from Footer
   ======================================== */

.cta-section-ultimate {
    background: linear-gradient(135deg, #0A0F29 0%, #1a2456 50%, #2d3a6b 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 40%);
    animation: particleFloat 15s ease-in-out infinite;
}

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

.cta-gradient-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

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

.cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 50px;
    color: #FFC107;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.cta-ultimate-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #FFC107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-ultimate-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 90%;
}

.cta-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.cta-feature-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta-feature-box:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-5px);
}

.cta-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a1a1a;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.cta-feature-info h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.cta-feature-info span {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Action Box */
.cta-action-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255, 193, 7, 0.2);
}

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

.cta-action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    animation: iconBounce 3s ease-in-out infinite;
}

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

.cta-action-header h4 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0A0F29;
    margin-bottom: 0.5rem;
}

.cta-action-header p {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

.cta-action-body {
    margin-top: 2rem;
}

.cta-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #0A0F29 0%, #1a2456 100%);
    border-radius: 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(10, 15, 41, 0.3);
}

.cta-phone-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(10, 15, 41, 0.4);
    color: #FFC107;
}

.cta-phone-link i {
    color: #FFC107;
    animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.cta-divider::before,
.cta-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e0e0e0;
}

.cta-divider::before { left: 0; }
.cta-divider::after { right: 0; }

.cta-divider span {
    background: white;
    padding: 0 1rem;
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-cta-ultimate {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    color: #1a1a1a;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-cta-ultimate:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
    color: #1a1a1a;
    background: linear-gradient(135deg, #FFA000 0%, #FF8F00 100%);
}

.btn-cta-outline {
    background: transparent;
    color: #0A0F29;
    border: 2px solid #0A0F29;
    padding: 1.25rem 2rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-cta-outline:hover {
    background: #0A0F29;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(10, 15, 41, 0.3);
}

.cta-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.cta-wave-bottom svg {
    width: 100%;
    height: 100%;
}

/* CTA Responsive */
@media (max-width: 991px) {
    .cta-section-ultimate {
        padding: 60px 0 100px;
        margin-top: 60px;
    }
    
    .cta-ultimate-title {
        font-size: 2.25rem;
    }
    
    .cta-ultimate-text {
        font-size: 1.125rem;
        max-width: 100%;
    }
    
    .cta-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cta-ultimate-title {
        font-size: 1.75rem;
    }
    
    .cta-action-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-phone-link {
        font-size: 1.25rem;
    }
    
    .btn-cta-ultimate,
    .btn-cta-outline {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

/* ========================================
   FOOTER MODERN STYLES
   ======================================== */

.footer-modern {
    background: #0A0F29;
    color: #ffffff;
    margin-top: 0;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a1a1a;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.footer-logo h4 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.938rem;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    border-color: #FFC107;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Footer Widget Title */
.footer-widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FFC107 0%, #FFA000 100%);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.938rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #FFC107;
    padding-left: 5px;
}

.footer-links a i {
    color: #FFC107;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

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

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

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    flex-grow: 0;
    color: #FFC107;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-align: center;
}

.footer-contact-icon i {
    margin: 0 auto;
    line-height: 50px;
}

.footer-contact-icon:hover {
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.5);
    transform: scale(1.05);
}

.footer-contact-text {
    flex: 1;
}

.footer-contact-text strong {
    display: block;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-contact-text span,
.footer-contact-text a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-decoration: none;
    line-height: 1.6;
}

.footer-contact-text a:hover {
    color: #FFC107;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.938rem;
}

.footer-copyright strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #FFC107;
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.25rem;
}

/* Back to Top Button Modern */
.back-to-top-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    font-size: 1.25rem;
}

.back-to-top-modern:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 35px rgba(255, 193, 7, 0.5);
    background: linear-gradient(135deg, #FFA000 0%, #FF8F00 100%);
}

.back-to-top-modern:active {
    transform: translateY(-3px) scale(1.05);
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-top {
        padding: 40px 0;
    }
    
    .footer-cta-title {
        font-size: 1.5rem;
    }
    
    .footer-cta-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .footer-main {
        padding: 60px 0 30px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        text-align: center;
    }
    
    .footer-cta-title {
        font-size: 1.25rem;
    }
    
    .btn-footer-primary {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-links {
        margin-top: 1rem;
    }
    
    .back-to-top-modern {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* 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-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;
    }
}

/* ========================================
   MODERN HOMEPAGE STYLES - AVUKAT THEME
   ======================================== */

/* Hero Section Modern */
.hero-section-modern {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 80px;
    margin-top: 0;
    background: linear-gradient(135deg, #0A0F29 0%, #1a2456 50%, #2d3a6b 100%);
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 193, 7, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFC107;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #FFC107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 600px;
}

.hero-buttons {
    margin-top: 2rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    color: #1a1a1a;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
    color: #1a1a1a;
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-3px);
}

.hero-features {
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.938rem;
}

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

/* 3D Icons Container */
.hero-3d-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.icon-3d-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.icon-3d {
    position: absolute;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 160, 0, 0.2) 100%);
    border: 3px solid rgba(255, 193, 7, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(255, 193, 7, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float3d 6s ease-in-out infinite;
}

.icon-3d i {
    font-size: 3rem;
    color: #FFC107;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
    transform: translateZ(20px);
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.6));
}

.icon-3d::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.3), rgba(255, 160, 0, 0.3));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(10px);
}

.icon-3d:hover::before {
    opacity: 1;
}

.icon-3d:hover {
    transform: translateZ(30px) rotateY(10deg) rotateX(10deg) scale(1.1);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 40px rgba(255, 193, 7, 0.2),
        0 0 30px rgba(255, 193, 7, 0.4);
    border-color: rgba(255, 193, 7, 0.6);
}

/* 3D Icon Positions */
.icon-3d-1 {
    top: 10%;
    left: 10%;
    transform: translateZ(0px) rotateY(-15deg) rotateX(10deg);
}

.icon-3d-2 {
    top: 20%;
    right: 15%;
    transform: translateZ(20px) rotateY(15deg) rotateX(-10deg);
}

.icon-3d-3 {
    bottom: 25%;
    left: 20%;
    transform: translateZ(10px) rotateY(-10deg) rotateX(15deg);
}

.icon-3d-4 {
    bottom: 15%;
    right: 10%;
    transform: translateZ(30px) rotateY(20deg) rotateX(-15deg);
}

/* Individual icon animations - handled by JS for better control */

/* Mouse movement effect for 3D icons - will be handled by JS */
.icon-3d-container {
    transition: transform 0.1s ease-out;
}

/* Responsive 3D Icons */
@media (max-width: 992px) {
    .icon-3d {
        width: 90px;
        height: 90px;
    }
    
    .icon-3d i {
        font-size: 2.25rem;
    }
    
    .icon-3d-1 {
        top: 5%;
        left: 5%;
    }
    
    .icon-3d-2 {
        top: 15%;
        right: 10%;
    }
    
    .icon-3d-3 {
        bottom: 20%;
        left: 15%;
    }
    
    .icon-3d-4 {
        bottom: 10%;
        right: 5%;
    }
}

@media (max-width: 768px) {
    .hero-3d-wrapper {
        min-height: 300px;
    }
    
    .icon-3d {
        width: 70px;
        height: 70px;
    }
    
    .icon-3d i {
        font-size: 1.75rem;
    }
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

/* Stats Section Modern */
.stats-section-modern {
    background: #f8f9fa;
    padding: 80px 0;
}

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

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

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #212529;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.938rem;
    color: #6c757d;
    margin: 0.5rem 0 0;
    font-weight: 500;
}

/* Section Header */
.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 193, 7, 0.1);
    color: #FFC107;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* Practice Areas Modern */
.practice-areas-section-modern {
    padding: 100px 0;
    background: white;
}

.practice-area-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.practice-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFC107 0%, #FFA000 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.practice-area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #FFC107;
}

.practice-area-card:hover::before {
    transform: scaleX(1);
}

.practice-area-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 160, 0, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #FFC107;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.practice-area-card:hover .practice-area-icon {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.practice-area-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.practice-area-description {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.practice-area-link {
    color: #FFC107;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.practice-area-link:hover {
    color: #FFA000;
    transform: translateX(5px);
}

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

.lawyer-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.lawyer-card-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.lawyer-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
}

.lawyer-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 41, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.lawyer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid #FFC107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFC107;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FFC107;
    color: white;
    transform: scale(1.1);
}

.lawyer-card-content {
    padding: 2rem;
    text-align: center;
}

.lawyer-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.lawyer-title {
    color: #FFC107;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lawyer-specialization {
    color: #6c757d;
    font-size: 0.938rem;
    margin: 0;
}

/* Blog Section Modern */
.blog-section-modern {
    padding: 100px 0;
}

.blog-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.blog-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.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: rgba(10, 15, 41, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.blog-read-more {
    width: 60px;
    height: 60px;
    background: #FFC107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    background: #FFA000;
    transform: scale(1.1) rotate(90deg);
    color: white;
}

.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;
    font-size: 0.813rem;
}

.blog-category {
    background: rgba(255, 193, 7, 0.1);
    color: #FFC107;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

.blog-date {
    color: #6c757d;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

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

.blog-card-title a:hover {
    color: #FFC107;
}

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

.blog-card-link {
    color: #FFC107;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: #FFA000;
    transform: translateX(5px);
}

/* CTA Section Modern */
.cta-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A0F29 0%, #1a2456 100%);
    color: white;
    position: relative;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature-item i {
    color: #FFC107;
    font-size: 1.25rem;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    color: #1a1a1a;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
    color: #1a1a1a;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    color: #1a1a1a;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    color: #1a1a1a;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section-modern {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-icon-large {
        font-size: 10rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-card-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   PAGE HEADER MODERN - Tüm Sayfalar İçin
   ======================================== */

.page-header-modern {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    margin-top: 0;
    background: linear-gradient(135deg, #0A0F29 0%, #1a2456 50%, #2d3a6b 100%);
    color: white;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.page-header-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 193, 7, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #FFC107;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.page-header-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.page-header-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
}

.page-header-wave svg {
    width: 100%;
    height: 100%;
}

.min-vh-40 {
    min-height: 40vh;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-content-section {
    padding: 100px 0;
    background: white;
}

.about-content-wrapper {
    padding-right: 2rem;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 1.5rem;
}

.about-content-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #495057;
}

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

.about-visual-section {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Card */
.about-main-card {
    position: relative;
    background: linear-gradient(135deg, #0A0F29 0%, #1a1f3a 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 3;
    overflow: hidden;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.about-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.about-icon-box {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.4);
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.about-icon-box:hover {
    transform: rotate(0deg) scale(1.1);
}

.about-icon-box i {
    font-size: 3.5rem;
    color: #0A0F29;
}

.about-main-card h3 {
    color: #FFC107;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.about-main-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin: 0;
}

/* Floating Mini Cards */
.about-floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-mini-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    animation: floatCard 4s ease-in-out infinite;
}

.about-mini-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: #FFC107;
}

.mini-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mini-card-icon i {
    font-size: 1.5rem;
    color: #0A0F29;
}

.about-mini-card span {
    font-weight: 600;
    color: #0A0F29;
    font-size: 0.938rem;
    white-space: nowrap;
}

.about-mini-card.card-1 {
    top: 15%;
    right: -5%;
    animation-delay: 0s;
}

.about-mini-card.card-2 {
    bottom: 30%;
    left: -5%;
    animation-delay: 1.5s;
}

.about-mini-card.card-3 {
    bottom: 10%;
    right: 5%;
    animation-delay: 3s;
}

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

/* Decorative Circles */
.about-decorative-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.about-decorative-circles .circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 193, 7, 0.2);
    animation: pulse 4s ease-in-out infinite;
}

.about-decorative-circles .circle-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.about-decorative-circles .circle-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 0%;
    animation-delay: 1s;
}

.about-decorative-circles .circle-3 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .about-visual-section {
        min-height: 400px;
        margin-top: 3rem;
    }
    
    .about-main-card {
        padding: 3rem 2rem;
    }
    
    .about-mini-card.card-1,
    .about-mini-card.card-2,
    .about-mini-card.card-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        display: none;
    }
}

.mission-vision-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFC107 0%, #FFA000 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #FFC107;
}

.mission-vision-card:hover::before {
    transform: scaleX(1);
}

.mission-card .card-icon-wrapper {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 160, 0, 0.1) 100%);
    color: #FFC107;
}

.vision-card .card-icon-wrapper {
    background: linear-gradient(135deg, rgba(10, 15, 41, 0.1) 0%, rgba(26, 36, 86, 0.1) 100%);
    color: #0A0F29;
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.mission-vision-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.card-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.card-text-modern {
    color: #6c757d;
    line-height: 1.8;
    font-size: 1rem;
}

/* ========================================
   PRACTICE AREAS PAGE STYLES
   ======================================== */

.practice-areas-page-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.btn-back-modern {
    background: white;
    border: 2px solid #e9ecef;
    color: #495057;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-back-modern:hover {
    background: #FFC107;
    border-color: #FFC107;
    color: #1a1a1a;
    transform: translateX(-5px);
}

.practice-detail-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
}

.practice-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f8f9fa;
}

.practice-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    flex-shrink: 0;
}

.practice-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #212529;
    margin: 0;
}

.practice-detail-content {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #495057;
}

.practice-detail-content h3,
.practice-detail-content h4 {
    color: #212529;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.practice-detail-content li {
    margin-bottom: 0.5rem;
}

/* ========================================
   SIDEBAR CARDS MODERN
   ======================================== */

.sidebar-card-modern {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.sidebar-card-modern:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.sidebar-card-header {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1a1a1a;
}

.sidebar-card-header i {
    font-size: 1.25rem;
}

.sidebar-card-header h5 {
    margin: 0;
    font-weight: 700;
    font-size: 1.125rem;
}

.sidebar-card-body {
    padding: 1.5rem;
}

.sidebar-card-text {
    color: #6c757d;
    font-size: 0.938rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.sidebar-list-modern li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f8f9fa;
}

.sidebar-list-modern li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-list-modern a {
    color: #495057;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar-list-modern a:hover {
    color: #FFC107;
    transform: translateX(5px);
}

.sidebar-list-modern a i {
    font-size: 0.75rem;
    color: #FFC107;
}

/* ========================================
   TEAM PAGE STYLES
   ======================================== */

.team-page-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.lawyer-bio {
    color: #6c757d;
    font-size: 0.938rem;
    line-height: 1.7;
    margin: 1rem 0;
}

.lawyer-experience {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50px;
    color: #FFC107;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.lawyer-experience i {
    font-size: 1rem;
}

.lawyer-detail-section {
    background: #fff;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.lawyer-detail-card {
    background: linear-gradient(135deg, #1f2940 0%, #272f45 100%);
    border-radius: 24px;
    padding: 2rem;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lawyer-detail-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 360px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.detail-placeholder {
    width: 100%;
    height: 360px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
}

.lawyer-detail-info {
    margin-top: 2rem;
}

.lawyer-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.15);
    color: #FFC107;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.lawyer-detail-info h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.lawyer-detail-title {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.25rem;
}

.lawyer-detail-specialization {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.lawyer-meta-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.lawyer-meta-list li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.lawyer-meta-list i {
    color: #FFC107;
}

.lawyer-contact-actions .btn {
    border-radius: 12px;
    font-weight: 600;
}

.lawyer-detail-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.lawyer-detail-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.lawyer-detail-social a:hover {
    background: #FFC107;
    border-color: #FFC107;
    color: #1f2940;
}

.lawyer-bio-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

.lawyer-bio-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.lawyer-bio-text {
    color: #4c5566;
    line-height: 1.9;
    font-size: 1rem;
}

.lawyer-detail-cta .btn {
    min-width: 180px;
}

@media (max-width: 991.98px) {
    .lawyer-detail-section {
        padding: 2rem;
    }
    
    .lawyer-detail-card,
    .lawyer-bio-card {
        padding: 2rem;
    }
}

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

.blog-page-section {
    padding: 100px 0;
    background: #f8f9fa;
}

/* ========================================
   BLOG DETAIL STYLES
   ======================================== */

.breadcrumb-header-modern {
    background: #f8f9fa;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-modern {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.breadcrumb-item-modern {
    display: flex;
    align-items: center;
}

.breadcrumb-item-modern + .breadcrumb-item-modern::before {
    content: '/';
    padding: 0 0.75rem;
    color: #6c757d;
    font-weight: 600;
}

.breadcrumb-item-modern a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.breadcrumb-item-modern a:hover {
    color: #FFC107;
}

.breadcrumb-item-modern.active {
    color: #6c757d;
    font-weight: 600;
}

.blog-detail-section {
    padding: 80px 0;
    background: white;
}

.blog-detail-article {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.blog-detail-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-detail-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.blog-detail-category {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    color: #1a1a1a;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-detail-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.blog-info-item {
    color: #6c757d;
    font-size: 0.938rem;
    display: flex;
    align-items: center;
}

.blog-info-item i {
    color: #FFC107;
    margin-right: 0.5rem;
}

.blog-detail-title {
    font-size: 3rem;
    font-weight: 800;
    color: #212529;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.blog-detail-content {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #495057;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    color: #212529;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

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

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

.related-posts-modern {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #f8f9fa;
}

.related-posts-title {
    font-size: 2rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.related-post-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #FFC107;
}

.related-post-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.related-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: #FFC107;
}

.related-post-link {
    color: #FFC107;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    font-size: 0.938rem;
    transition: all 0.3s ease;
}

.related-post-link:hover {
    color: #FFA000;
    transform: translateX(5px);
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-page-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.contact-info-content {
    flex: 1;
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.contact-info-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.contact-link {
    color: #FFC107;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #FFA000;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
}

.contact-form-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f8f9fa;
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-form-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

.contact-form-modern {
    margin-top: 2rem;
}

.form-label-modern {
    display: block;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.75rem;
    font-size: 0.938rem;
}

.form-control-modern {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #212529;
}

.form-control-modern:focus {
    outline: none;
    border-color: #FFC107;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1);
}

.form-control-modern::placeholder {
    color: #adb5bd;
}

/* ========================================
   MODERN BUTTONS
   ======================================== */

.btn-primary-modern {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    color: #1a1a1a;
    background: linear-gradient(135deg, #FFA000 0%, #FF8F00 100%);
}

.btn-primary-modern:active {
    transform: translateY(-1px);
}

/* ========================================
   RESPONSIVE - PAGE HEADERS
   ======================================== */

@media (max-width: 992px) {
    .page-header-title {
        font-size: 2.5rem;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .practice-detail-title {
        font-size: 2rem;
    }
    
    .blog-detail-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .page-header-modern {
        min-height: auto;
        padding: 60px 0 50px;
    }
    
    .page-header-title {
        font-size: 2rem;
    }
    
    .page-header-subtitle {
        font-size: 1rem;
    }
    
    .about-content-wrapper {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .section-title-modern {
        font-size: 1.75rem;
    }
    
    .practice-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .practice-detail-title {
        font-size: 1.75rem;
    }
    
    .blog-detail-title {
        font-size: 1.75rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
}
