/* Custom Styles for BATIKENT TURİZM */

/* Google Fonts */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.about-title,
.about-text {
    font-family: 'Poppins', 'Inter', sans-serif;
}

.about-title {
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a2e;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.about-text strong {
    font-weight: 600;
    color: #0d6efd;
}

/* Top Bar Styles */
.top-bar {
    font-size: 0.9rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(25, 135, 84, 0.1) 100%);
    z-index: 1;
}

.top-bar > .container {
    position: relative;
    z-index: 2;
}

.top-bar a {
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 8px;
    border-radius: 4px;
}

.top-bar a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.top-bar a i {
    margin-right: 6px;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
}

.top-bar a:hover i {
    transform: scale(1.1);
}

.top-bar .contact-info a {
    font-weight: 500;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.top-bar .contact-info a:first-child {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.15) 0%, rgba(13, 110, 253, 0.05) 100%);
    border-color: rgba(13, 110, 253, 0.2);
}

.top-bar .contact-info a:last-child {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.15) 0%, rgba(25, 135, 84, 0.05) 100%);
    border-color: rgba(25, 135, 84, 0.2);
}

.top-bar .contact-info a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.top-bar .contact-info a span {
    position: relative;
}

@keyframes underline {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.social-links a {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-2px);
    color: #0d6efd !important;
}

/* Navigation Styles */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Experience Badge - Yanar Dönerli */
.experience-badge {
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
    background: linear-gradient(135deg, #0d6efd 0%, #198754 50%, #0d6efd 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4), 0 0 20px rgba(13, 110, 253, 0.3);
    overflow: hidden;
    white-space: nowrap;
}

.experience-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
    transform: rotate(45deg);
}

.experience-badge::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 27px;
    background: linear-gradient(135deg, #0d6efd, #198754, #ffc107, #0d6efd);
    background-size: 300% 300%;
    animation: borderGlow 4s linear infinite;
    z-index: -1;
    opacity: 0.6;
}

.badge-text {
    display: flex;
    align-items: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.badge-text i {
    font-size: 1.1rem;
    animation: iconPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
}

.badge-number {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 4px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: numberGlow 2s ease-in-out infinite;
}

.badge-year {
    margin-right: 4px;
}

.badge-sector {
    font-size: 0.85rem;
    opacity: 0.95;
}

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4), 0 0 20px rgba(13, 110, 253, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.6), 0 0 30px rgba(13, 110, 253, 0.5);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 1));
    }
}

@keyframes numberGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.4);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.6);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .experience-badge {
        margin-top: 10px;
        margin-left: 0;
        display: inline-block;
    }
    
    .nav-item.d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .nav-item .experience-badge {
        margin-top: 10px;
        margin-left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .nav-item .nav-link {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .experience-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .badge-number {
        font-size: 1.1rem;
    }
    
    .badge-sector {
        font-size: 0.75rem;
    }
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #0d6efd !important;
}

.nav-link.active {
    color: #0d6efd !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: #0d6efd;
}

/* Carousel Styles */
.carousel-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.carousel-slide > .container {
    position: relative;
    z-index: 2;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Services Section */
.services-section {
    background: #f8f9fa;
}

.service-card {
    transition: all 0.3s ease;
    background: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: #0d6efd !important;
}

.service-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* About Section */
.about-section {
    background: white;
}

.about-title {
    position: relative;
    padding-bottom: 15px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #198754);
    border-radius: 2px;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Stats Section Main */
.stats-section-main {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-card {
    background: white;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #198754, #0dcaf0);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: #0d6efd;
}

.stat-icon {
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Footer Styles */
footer {
    background: #1a1a1a !important;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #0d6efd !important;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Button Styles */
.btn {
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary:hover,
.btn-outline-success:hover,
.btn-outline-info:hover {
    transform: translateY(-2px);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    scroll-margin-top: 80px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.stat-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    .carousel-item img {
        height: 400px !important;
    }
    
    .about-image-wrapper {
        margin-top: 2rem;
    }
    
    .stat-card {
        margin-bottom: 1.5rem;
    }
    
    .top-bar .d-flex {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .top-bar .text-md-end {
        text-align: left !important;
        margin-top: 0.5rem;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 35px;
        max-width: 120px;
    }
    
    .carousel-item img {
        height: 350px !important;
    }
    
    .display-4 {
        font-size: 1.75rem !important;
    }
    
    .display-5 {
        font-size: 1.5rem !important;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.carousel-item {
    animation: fadeInUp 0.8s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0d6efd;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0b5ed7;
}

/* Text Selection */
::selection {
    background: #0d6efd;
    color: white;
}

::-moz-selection {
    background: #0d6efd;
    color: white;
}

/* Page Header */
.page-header {
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.page-header > .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

/* Dropdown Menu Active */
.dropdown-item.active {
    background-color: #0d6efd;
    color: white;
}

.nav-link.dropdown-toggle.active {
    color: #0d6efd !important;
}

/* Contact Page Styles */
.contact-card {
    background: white;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    border-color: #0d6efd;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
}

.contact-card:nth-child(1) .contact-card-icon {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
}

.contact-card:nth-child(2) .contact-card-icon {
    background: linear-gradient(135deg, #198754 0%, #157347 100%);
}

.contact-card:nth-child(3) .contact-card-icon {
    background: linear-gradient(135deg, #0dcaf0 0%, #0aa2c0 100%);
}

.contact-card:nth-child(4) .contact-card-icon {
    background: linear-gradient(135deg, #dc3545 0%, #bb2d3b 100%);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card a {
    color: #0d6efd;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #0b5ed7;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.map-wrapper {
    border: 1px solid #dee2e6;
    height: 300px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .contact-info-wrapper {
        position: static;
        margin-bottom: 30px;
    }
}

/* Service Process Circle */
.service-process-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    min-height: 500px;
}

.service-process-circle {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    z-index: 10;
    text-align: center;
    letter-spacing: 2px;
}

.process-step {
    position: absolute;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform-origin: 250px 250px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: scale(1.1);
    z-index: 5;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    max-width: 100px;
    color: #333;
}

.process-step:hover .step-icon {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Step Positions and Colors */
.step-1 {
    transform: rotate(0deg) translateX(190px) rotate(0deg);
}
.step-1 .step-icon {
    background: #28a745;
    color: white;
}
.step-1 .step-label {
    color: #28a745;
}

.step-2 {
    transform: rotate(45deg) translateX(190px) rotate(-45deg);
}
.step-2 .step-icon {
    background: #1e3a5f;
    color: white;
}
.step-2 .step-label {
    color: #1e3a5f;
}

.step-3 {
    transform: rotate(90deg) translateX(190px) rotate(-90deg);
}
.step-3 .step-icon {
    background: #e91e63;
    color: white;
}
.step-3 .step-label {
    color: #e91e63;
}

.step-4 {
    transform: rotate(135deg) translateX(190px) rotate(-135deg);
}
.step-4 .step-icon {
    background: #17a2b8;
    color: white;
}
.step-4 .step-label {
    color: #17a2b8;
}

.step-5 {
    transform: rotate(180deg) translateX(190px) rotate(-180deg);
}
.step-5 .step-icon {
    background: #28a745;
    color: white;
}
.step-5 .step-label {
    color: #28a745;
}

.step-6 {
    transform: rotate(225deg) translateX(190px) rotate(-225deg);
}
.step-6 .step-icon {
    background: #1e3a5f;
    color: white;
}
.step-6 .step-label {
    color: #1e3a5f;
}

.step-7 {
    transform: rotate(270deg) translateX(190px) rotate(-270deg);
}
.step-7 .step-icon {
    background: #e91e63;
    color: white;
}
.step-7 .step-label {
    color: #e91e63;
}

.step-8 {
    transform: rotate(315deg) translateX(190px) rotate(-315deg);
}
.step-8 .step-icon {
    background: #17a2b8;
    color: white;
}
.step-8 .step-label {
    color: #17a2b8;
}

/* Connecting Lines */
.process-step::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 40px;
    background: #ddd;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

/* Responsive */
@media (max-width: 992px) {
    .service-process-circle {
        width: 400px;
        height: 400px;
    }
    
    .process-step {
        transform-origin: 200px 200px;
    }
    
    .step-1 {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
    }
    .step-2 {
        transform: rotate(45deg) translateX(150px) rotate(-45deg);
    }
    .step-3 {
        transform: rotate(90deg) translateX(150px) rotate(-90deg);
    }
    .step-4 {
        transform: rotate(135deg) translateX(150px) rotate(-135deg);
    }
    .step-5 {
        transform: rotate(180deg) translateX(150px) rotate(-180deg);
    }
    .step-6 {
        transform: rotate(225deg) translateX(150px) rotate(-225deg);
    }
    .step-7 {
        transform: rotate(270deg) translateX(150px) rotate(-270deg);
    }
    .step-8 {
        transform: rotate(315deg) translateX(150px) rotate(-315deg);
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-label {
        font-size: 0.65rem;
        max-width: 80px;
    }
    
    .process-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-process-wrapper {
        padding: 20px;
        min-height: 400px;
    }
    
    .service-process-circle {
        width: 350px;
        height: 350px;
    }
    
    .process-step {
        transform-origin: 175px 175px;
    }
    
    .step-1 {
        transform: rotate(0deg) translateX(130px) rotate(0deg);
    }
    .step-2 {
        transform: rotate(45deg) translateX(130px) rotate(-45deg);
    }
    .step-3 {
        transform: rotate(90deg) translateX(130px) rotate(-90deg);
    }
    .step-4 {
        transform: rotate(135deg) translateX(130px) rotate(-135deg);
    }
    .step-5 {
        transform: rotate(180deg) translateX(130px) rotate(-180deg);
    }
    .step-6 {
        transform: rotate(225deg) translateX(130px) rotate(-225deg);
    }
    .step-7 {
        transform: rotate(270deg) translateX(130px) rotate(-270deg);
    }
    .step-8 {
        transform: rotate(315deg) translateX(130px) rotate(-315deg);
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .step-label {
        font-size: 0.6rem;
        max-width: 70px;
    }
    
    .process-title {
        font-size: 1.2rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #0d6efd;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.scroll-to-top-btn:hover {
    background: #0b5ed7;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.scroll-to-top-btn.show {
    display: flex;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Buttons */
@media (max-width: 576px) {
    .scroll-to-top-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 90px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 15px;
        right: 15px;
    }
}
