/* Custom CSS for Ali Gür Hair Salon */

:root {
    --primary-color: #FF8C42;
    --secondary-color: #4ECDC4;
    --accent-color: #66BB6A;
    --success-color: #81C784;
    --info-color: #64B5F6;
    --warning-color: #FFA726;
    --danger-color: #E57373;
    --dark-color: #424242;
    --light-color: #FAFAFA;
    
    /* Doğal Kuaför Teması Renk Paleti */
    --orange-primary: #FF8C42;
    --orange-secondary: #FFB74D;
    --orange-light: #FFCC80;
    --teal-primary: #4ECDC4;
    --teal-secondary: #26D0CE;
    --teal-light: #80CBC4;
    --green-primary: #66BB6A;
    --green-secondary: #81C784;
    --green-light: #A5D6A7;
    
    /* Doğal Gradient Paleti */
    --gradient-primary: linear-gradient(135deg, #FF8C42, #4ECDC4);
    --gradient-secondary: linear-gradient(135deg, #4ECDC4, #66BB6A);
    --gradient-accent: linear-gradient(135deg, #FFB74D, #80CBC4);
    --gradient-warm: linear-gradient(135deg, #FF8C42, #FFB74D);
    --gradient-cool: linear-gradient(135deg, #4ECDC4, #66BB6A);
    --gradient-natural: linear-gradient(135deg, #66BB6A, #81C784);
    --gradient-cta: linear-gradient(135deg, #FF8C42 0%, #4ECDC4 50%, #66BB6A 100%);
    
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 15px rgba(0, 0, 0, 0.2);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.3);
    --shadow-colored: 0 8px 25px rgba(255, 140, 66, 0.3);
    --shadow-teal: 0 8px 25px rgba(78, 205, 196, 0.3);
    --shadow-green: 0 8px 25px rgba(102, 187, 106, 0.3);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes heroScale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    padding: 1.2rem 0;
    min-height: 80px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.navbar-brand .logo {
    height: 65px;
    max-height: 65px;
    width: auto;
    max-width: 200px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    object-fit: contain;
    object-position: center;
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: contrast(1.1) brightness(1.05);
    padding: 5px;
}

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

/* Retina display support for logo */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .navbar-brand .logo,
    .footer-logo {
        image-rendering: auto;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        transform: scale(1);
    }
}

/* Logo responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
        min-height: 70px;
    }
    
    .navbar-brand .logo {
        height: 55px;
        max-height: 55px;
        max-width: 180px;
        padding: 3px;
    }
    
    .footer-logo {
        max-width: 180px;
        max-height: 85px;
        padding: 6px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.8rem 0;
        min-height: 60px;
    }
    
    .navbar-brand .logo {
        height: 45px;
        max-height: 45px;
        max-width: 160px;
        padding: 2px;
    }
    
    .footer-logo {
        max-width: 160px;
        max-height: 70px;
        padding: 4px;
    }
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 10px;
    position: relative;
    transition: var(--transition);
}

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

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

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

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    height: 100vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out, heroScale 2s ease-in-out 1s 3;
}

.hero-title .highlight {
    color: white;
    display: inline-block;
    animation: pulse 2s infinite;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    background: var(--orange-primary);
    color: white;
}

.hero-buttons .btn:hover {
    background: var(--teal-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-teal);
}

.btn-primary {
    background: var(--orange-primary);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--teal-primary);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-colored);
    color: white;
}

.btn-primary * {
    position: relative;
    z-index: 1;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.btn-outline-light:hover {
    background: var(--orange-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
    transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    opacity: 0.5;
    transition: var(--transition);
}

.carousel-indicators button.active {
    opacity: 1;
    background: var(--primary-color);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

/* About Section */
.about-content h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-box {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    margin-bottom: 2rem;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-box i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-box h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Goals Section */
.goals-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.goals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    animation: float 6s ease-in-out infinite;
}

.goal-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: white;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.goal-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.goal-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.goal-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Services Section */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card:hover .service-icon {
    animation: pulse 1s;
}

.service-card h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 140, 66, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
    animation: pulse 1s infinite;
}

/* Branch Cards */
.branch-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.branch-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.branch-card p {
    color: #666;
    margin: 0;
}

/* Contact Section */
.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.contact-item h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-item p {
    margin: 0;
    color: #666;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    height: 100%;
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 16px;
    transition: var(--transition);
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    color: white;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-logo {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    border-radius: var(--border-radius);
    object-fit: contain;
    object-position: center;
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: contrast(1.1) brightness(1.05);
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.footer h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-divider {
    border-color: #555;
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: #ccc;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

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

.back-to-top:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .navbar-nav .nav-link {
        margin: 0;
        padding: 10px 0;
    }
    
    .contact-info,
    .contact-form {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .feature-box,
    .service-card,
    .goal-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-box,
    .service-card,
    .goal-card {
        padding: 1.5rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--teal-primary);
}

/* Additional Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.hover-effect {
    transition: var(--transition);
}

.hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-content h3 {
    margin-top: 20px;
    font-size: 2rem;
    font-weight: 600;
}

.loading-content p {
    margin-top: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

/* Service Price Styling */
.service-price {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.service-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.service-price .duration {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 30px;
    padding: 14px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Enhanced Gallery */
.gallery-item {
    cursor: pointer;
}

.gallery-item img {
    border-radius: var(--border-radius);
}

/* Contact Form Enhancements */
.form-control:focus {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.62-.62 1.85-1.85L6.62 2.4l.62.62-3.5 3.5-1.85-1.85z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 2.4 2.4m0-2.4L5.8 7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Navbar Enhancement */
.navbar-brand:hover {
    transform: scale(1.05);
}

/* Footer Enhancement */
.footer .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.footer .contact-item i {
    margin-right: 10px;
    margin-top: 2px;
    width: 20px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--orange-primary);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Section Animations */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* New Page Specific Styles */
.page-hero {
    padding: 120px 0 60px;
    color: white;
    margin-top: 85px;
    position: relative;
    overflow: hidden;
}

.page-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

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

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

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

/* Service Card Detailed */
.service-card-detailed {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-body {
    padding: 1rem 2rem;
    flex-grow: 1;
}

.service-footer {
    padding: 1rem 2rem 2rem;
}

.service-details {
    margin: 1rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.detail-item i {
    width: 20px;
    margin-right: 0.5rem;
}

/* Branch Page Specific Styles */
.branch-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.branch-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.branch-body {
    padding: 1rem 2rem;
    flex-grow: 1;
}

.branch-footer {
    padding: 1rem 2rem 2rem;
}

.branch-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.branch-detail i {
    width: 20px;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Working Hours Styles */
.working-hours-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.day-schedule {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
}

.day-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.day-item:last-child {
    border-bottom: none;
}

.day-item.special {
    color: #dc3545;
    font-weight: 600;
}

.day {
    font-weight: 600;
    color: #2c3e50;
}

.time {
    color: #6c757d;
}

/* Transport Cards */
.transport-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.transport-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Contact Page Specific Styles */
.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h6 {
    margin-bottom: 0.25rem;
    color: #2c3e50;
}

/* Branch Contact Cards */
.branch-contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.branch-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Mission/Vision Cards */
.mission-card, .vision-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    border-left: 4px solid var(--orange-primary);
}

.vision-card {
    border-left-color: var(--teal-primary);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Service Preview Cards */
.service-preview-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* About Preview Styles */
.about-preview-content {
    padding: 2rem 0;
}

.feature-highlight {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-highlight i {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-highlight h6 {
    color: #2c3e50;
    font-weight: 600;
}

/* Stats Section */
.stat-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e9ecef;
}

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

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #6c757d;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #495057;
}

.stat-label {
    color: #6c757d;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Service Card Home */
.service-card-home {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent;
}

.service-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-card-home:nth-child(1) { border-top-color: var(--orange-primary); }
.service-card-home:nth-child(2) { border-top-color: var(--teal-primary); }
.service-card-home:nth-child(3) { border-top-color: var(--green-primary); }
.service-card-home:nth-child(4) { border-top-color: var(--orange-secondary); }
.service-card-home:nth-child(5) { border-top-color: var(--teal-secondary); }
.service-card-home:nth-child(6) { border-top-color: var(--green-secondary); }

.service-card-home .service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card-home:hover .service-icon {
    transform: scale(1.1);
}

.service-card-home h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card-home p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.service-card-home .service-price {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.service-card-home .service-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-primary);
    display: block;
}

.service-card-home .service-price .duration {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Branch Preview Cards */
.branch-preview-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid transparent;
}

.branch-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-left-color: var(--orange-primary);
}

.branch-preview-card .branch-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.branch-preview-card:hover .branch-icon {
    transform: scale(1.1);
}

.branch-preview-card h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.branch-address {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-link {
    color: #28a745;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #1e7e34;
    transform: translateY(-1px);
}

.branch-actions {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.branch-actions .btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 8px;
    flex: 1;
    min-width: 80px;
    max-width: 120px;
    white-space: nowrap;
    text-align: center;
}

.branch-actions .btn i {
    font-size: 0.7rem;
}

/* Appointment Page Styles */
.appointment-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 30px;
}

/* Gallery Page Specific Styles */
.gallery-item-detailed {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-item-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-item-detailed .image-container {
    position: relative;
    overflow: hidden;
}

.gallery-item-detailed .gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item-detailed:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item-detailed .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,140,66,0.9), rgba(78,205,196,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item-detailed:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay .overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.gallery-overlay .overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gallery-overlay .overlay-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay .overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Gallery Stats */
.gallery-stat-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e9ecef;
}

.gallery-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background: white;
}

.gallery-stat-card .stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #6c757d;
}

.gallery-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #495057;
}

.gallery-stat-card .stat-label {
    color: #6c757d;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Category Showcase */
.category-showcase {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-showcase:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

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

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.category-showcase:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(255,140,66,0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.category-showcase:hover .category-overlay {
    opacity: 1;
}

.category-overlay h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.category-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Gallery Grid Responsive */
@media (max-width: 768px) {
    .gallery-item-detailed .gallery-image {
        height: 250px;
    }
    
    .category-image {
        height: 200px;
    }
    
    .gallery-overlay .overlay-content {
        padding: 1rem;
    }
    
    .category-overlay {
        padding: 1rem;
    }
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-section,
    .contact-info-section {
        margin-bottom: 2rem;
    }
    
    .branch-contact-card {
        margin-bottom: 1rem;
    }
    
    .working-hours-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .service-card-detailed,
    .branch-card,
    .transport-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 1.5rem;
    }
}

/* CTA Section Styles */
.cta-section {
    background: var(--gradient-cta);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 200px 200px;
    animation: float 8s ease-in-out infinite;
    opacity: 0.5;
}

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

.cta-section h2 {
    color: white !important;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

/* Enhanced Button Styles */
.btn-secondary {
    background: var(--orange-primary);
    color: white;
    border: none;
}

.btn-secondary:hover {
    background: var(--green-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
    color: white;
}

.btn-success {
    background: var(--orange-primary);
    color: white;
    border: none;
}

.btn-success:hover {
    background: #dc3545;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--orange-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

/* Header Randevu Button Special Styling */
.navbar .nav-item .btn-outline-primary {
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    background: transparent;
    transition: all 0.3s ease;
}

.navbar .nav-item .btn-outline-primary:hover {
    background: var(--orange-primary) !important;
    border-color: var(--orange-primary) !important;
    color: var(--dark-color) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

.navbar .nav-item .btn-outline-primary:hover i,
.navbar .nav-item .btn-outline-primary:hover * {
    color: var(--dark-color) !important;
}

.btn-outline-secondary {
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--teal-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
}

.btn-outline-success {
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    background: transparent;
}

.btn-outline-success:hover {
    background: var(--green-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

/* Button Shine Effect */
@keyframes buttonShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::after {
    left: 100%;
}

/* Enhanced Service Cards */
.service-card-home:nth-child(1) { 
    border-top-color: var(--orange-primary); 
}
.service-card-home:nth-child(2) { 
    border-top-color: var(--teal-primary); 
}
.service-card-home:nth-child(3) { 
    border-top-color: var(--green-primary); 
}
.service-card-home:nth-child(4) { 
    border-top-color: var(--orange-secondary); 
}
.service-card-home:nth-child(5) { 
    border-top-color: var(--teal-secondary); 
}
.service-card-home:nth-child(6) { 
    border-top-color: var(--green-secondary); 
}

/* Enhanced Gradients for Stats */
.stat-number {
    color: #495057 !important;
}

.gallery-stat-card .stat-number {
    color: #495057 !important;
}

/* Mission/Vision Card Updates */
.mission-card {
    border-left-color: var(--orange-primary);
}

.vision-card {
    border-left-color: var(--teal-primary);
}

/* Enhanced Social Links */
.social-link {
    background: var(--social-color, #6c757d);
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: linear-gradient(135deg, #3b5998, #8b9dc3);
}

.social-link.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

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

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

.social-link.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Footer Links Styling */
.footer-links a {
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--orange-primary) !important;
    transform: translateX(5px);
}

.footer-links a i {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover i {
    opacity: 1;
}

/* Responsive CTA Adjustments */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.875rem;
    }
    
    .btn-lg {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}

/* Override stat icon colors to grey */
.stat-card .text-primary,
.stat-card .text-success,
.stat-card .text-warning,
.stat-card .text-danger,
.gallery-stat-card .text-primary,
.gallery-stat-card .text-success,
.gallery-stat-card .text-warning {
    color: #6c757d !important;
}

/* Büyüyüp küçülen animasyon efekti */
@keyframes pulsate-text {
    0% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.9;
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

.hero-animated-text {
    animation: pulsate-text 2s ease-in-out;
    transform-origin: center;
    display: inline-block;
    transition: all 0.3s ease;
}

.hero-animated-text.animate-once {
    animation-iteration-count: 1;
}

.hero-animated-text.animate-three-times {
    animation-iteration-count: 3;
}

/* Hover efekti için */
.hero-animated-text:hover {
    transform: scale(1.02);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Şubelerimiz Slider */
.branches-slider-container {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

.branches-slider-wrapper {
    overflow: hidden;
    border-radius: 10px;
}

.branches-slider {
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.branch-slide {
    width: 350px;
    min-width: 350px;
    padding: 0 10px;
}

/* Navigation Buttons */
.branch-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.branch-nav-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #FF6B6B;
}

.branch-nav-prev {
    left: -25px;
}

.branch-nav-next {
    right: -25px;
}

/* Indicators */
.branch-indicators {
    gap: 10px;
}

.branch-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.branch-indicator.active {
    background: #FF6B6B;
    transform: scale(1.2);
}

.branch-indicator:hover {
    background: #4ECDC4;
}

/* Responsive */
@media (max-width: 768px) {
    .branch-slide {
        width: 280px;
        min-width: 280px;
    }
    
    .branch-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .branch-nav-prev {
        left: -20px;
    }
    
    .branch-nav-next {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .branch-slide {
        width: 250px;
        min-width: 250px;
    }
    
    .branch-nav-prev {
        left: -15px;
    }
    
    .branch-nav-next {
        right: -15px;
    }
}

/* Branch Actions Responsive */
@media (max-width: 320px) {
    .branch-actions {
        flex-direction: column;
        gap: 6px;
    }
    
    .branch-actions .btn {
        max-width: 100%;
        min-width: auto;
        padding: 8px 12px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) and (min-width: 321px) {
    .branch-actions .btn {
        font-size: 0.7rem;
        padding: 7px 10px;
        min-width: 75px;
        max-width: 110px;
    }
    
    .branch-actions .btn i {
        font-size: 0.65rem;
    }
} 