 /*
 * Profesyonel Servis - Custom CSS
 * Bootstrap 5 ile uyumlu özel stil dosyası
 * Renk Paleti: Mavi (#007bff), Beyaz (#ffffff), Siyah (#000000), Kırmızı (#dc3545)
 */

/* =============================================================================
   CSS VARIABLES & ROOT SETTINGS
   ============================================================================= */
:root {
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --primary-light: #66b3ff;
    --secondary-color: #6c757d;
    --danger-color: #dc3545;
    --danger-dark: #c82333;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --white-color: #ffffff;
    --black-color: #000000;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --danger-gradient: linear-gradient(135deg, var(--danger-color) 0%, var(--danger-dark) 100%);
    
    /* Shadows */
    --box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Border Radius */
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    
    /* Z-index */
    --z-loading: 9999;
    --z-header: 1020;
    --z-whatsapp: 1000;
    --z-back-to-top: 999;
}

/* =============================================================================
   GLOBAL STYLES
   ============================================================================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Selection Colors */
::selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* =============================================================================
   LOADING ANIMATION
   ============================================================================= */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-loading);
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.loading-spinner .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}

/* =============================================================================
   BACKGROUND GRADIENTS
   ============================================================================= */
.bg-gradient-primary {
    background: var(--primary-gradient) !important;
}

.bg-gradient-danger {
    background: var(--danger-gradient) !important;
}

/* =============================================================================
   HEADER STYLES
   ============================================================================= */
.top-bar {
    font-size: 0.875rem;
    background: var(--primary-gradient) !important;
}

.top-bar a {
    transition: opacity var(--transition-fast);
}

.top-bar a:hover {
    opacity: 0.8;
}

.main-header {
    background: var(--white-color) !important;
    transition: all var(--transition-normal);
}

.main-header.fixed-top {
    box-shadow: var(--box-shadow);
}

.navbar-brand {
    font-weight: 700;
    transition: transform var(--transition-fast);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
    margin: 0 0.5rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Dropdown Styling */
.dropdown-menu {
    border: none;
    box-shadow: var(--box-shadow-lg);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    transition: all var(--transition-fast);
    border-radius: 0;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */
.hero-section {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.1);
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-content h1 {
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-features {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image img {
    animation: float 3s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.min-vh-50 {
    min-height: 50vh;
}

/* =============================================================================
   STATS SECTION
   ============================================================================= */
.stats-section {
    border-top: 3px solid var(--primary-color);
}

.stat-item {
    margin-top: 60px;
    padding: 1rem;
    transition: transform var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-icon i {
    transition: transform var(--transition-normal);
}

.stat-item:hover .stat-icon i {
    transform: scale(1.2);
}

/* =============================================================================
   SECTION TITLES
   ============================================================================= */
.section-title {
    font-weight: 700;
    color: var(--dark-gray);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.text-start .section-title::after {
    left: 0;
    transform: none;
}

/* =============================================================================
   CARDS & COMPONENTS
   ============================================================================= */
.service-card,
.brand-card,
.feature-card {
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover,
.brand-card:hover,
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.service-card {
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transition: left var(--transition-normal);
}

.service-card:hover::before {
    left: 0;
}

.service-image {
    overflow: hidden;
}

.service-image img {
    transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon i,
.feature-icon i {
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon i,
.feature-card:hover .feature-icon i {
    transform: rotateY(360deg);
    color: var(--primary-color);
}

/* =============================================================================
   BUTTONS
   ============================================================================= */
.btn {
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn::before {
    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 var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.btn-danger {
    background: var(--danger-gradient);
    border: none;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* =============================================================================
   BRAND TABS
   ============================================================================= */
.nav-pills .nav-link {
    color: var(--dark-gray);
    background: transparent;
    border: 2px solid var(--light-gray);
    margin: 0 0.5rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
}

.nav-pills .nav-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-pills .nav-link.active {
    background: var(--primary-gradient);
    color: var(--white-color);
    border-color: var(--primary-color);
}

/* =============================================================================
   PROCESS STEPS
   ============================================================================= */
.process-step {
    transition: transform var(--transition-normal);
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    font-size: 1.25rem;
    position: relative;
    z-index: 2;
}

.step-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: transform var(--transition-normal);
}

.process-step:hover .step-number::before {
    transform: translate(-50%, -50%) scale(1.2);
}

/* =============================================================================
   FLOATING ELEMENTS
   ============================================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: var(--z-whatsapp);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.whatsapp-float .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: var(--z-back-to-top);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* =============================================================================
   FOOTER STYLES
   ============================================================================= */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%) !important;
}

.footer-links a {
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.contact-item {
    transition: transform var(--transition-fast);
}

.contact-item:hover {
    transform: translateX(5px);
}

.social-links .btn {
    margin-right: 0.5rem;
    transition: all var(--transition-normal);
}

.social-links .btn:hover {
    transform: translateY(-3px) scale(1.1);
}

.bottom-footer {
    background: #000000 !important;
}

/* =============================================================================
   FOOTER STYLES
   ============================================================================= */
.footer {
    background: var(--dark-gray);
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 4px;
    background: var(--primary-gradient);
}

.footer h5,
.footer h6 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--white-color);
}

.footer h6::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    margin-top: 6px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #ffffff!important;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Contact Info */
.footer .contact-item {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.footer .contact-item i {
    font-size: 1rem;
}

/* Social Icons */
.footer .social-links a {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer .social-links a:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

/* Features */
.footer .features .feature-item small {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

/* Bottom Footer */
.bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.bottom-footer i {
    font-size: 1rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-back-to-top);
    box-shadow: var(--box-shadow);
    transition: all var(--transition-fast);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-lg);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 3px solid var(--primary-color);
    z-index: 1050;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


/* =============================================================================
   SERVICE AREAS
   ============================================================================= */
.service-area-item {
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-area-item:hover {
    background: var(--primary-color) !important;
    color: var(--white-color) !important;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.service-area-item:hover span {
    color: var(--white-color) !important;
}

.service-area-item:hover i {
    color: var(--white-color) !important;
}

/* =============================================================================
   BREADCRUMB
   ============================================================================= */
.breadcrumb-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--dark-gray);
}

/* =============================================================================
   ACCORDION (FAQ)
   ============================================================================= */
.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
}

.accordion-button {
    background: var(--light-gray);
    color: var(--dark-gray);
    font-weight: 500;
    border: none;
    transition: all var(--transition-fast);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white-color);
}

.accordion-button::after {
    transition: transform var(--transition-normal);
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white-color);
}

/* =============================================================================
   CONTACT CTA SECTIONS
   ============================================================================= */
.contact-cta {
    background: var(--primary-gradient) !important;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
    100% { transform: translateX(-100%) rotate(45deg); }
}

.contact-info-card {
    backdrop-filter: blur(10px);
    transition: transform var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

/* =============================================================================
   EMERGENCY BANNER
   ============================================================================= */
.emergency-banner {
    background: var(--danger-gradient) !important;
    animation: emergencyPulse 2s ease-in-out infinite alternate;
}

@keyframes emergencyPulse {
    from { background: var(--danger-color); }
    to { background: var(--danger-dark); }
}

/* =============================================================================
   COOKIE NOTICE
   ============================================================================= */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* =============================================================================
   BRAND & SERVICE DETAIL PAGES
   ============================================================================= */
.brand-logo-large,
.service-icon-large {
    transition: transform var(--transition-normal);
}

.brand-logo-large:hover,
.service-icon-large:hover {
    transform: scale(1.05) rotate(5deg);
}

.product-card,
.issue-item,
.feature-item {
    transition: transform var(--transition-fast);
}

.product-card:hover,
.issue-item:hover,
.feature-item:hover {
    transform: translateX(10px);
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */
@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
        text-align: center;
        top:75px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float .btn {
        width: 60px;
        height: 60px;
    }
    
    .back-to-top {
        bottom: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .navbar-brand span {
        display: none !important;
    }
    
    .top-bar {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .service-card,
    .brand-card,
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-notice .col-md-3 {
        margin-top: 1rem;
    }
}

/* =============================================================================
   ACCESSIBILITY & FOCUS STATES
   ============================================================================= */
.btn:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =============================================================================
   DARK MODE SUPPORT (Optional)
   ============================================================================= */
@media (prefers-color-scheme: dark) {
    .bg-light {
        background-color: #2c2c2c !important;
    }
    
    .text-muted {
        color: #b8b8b8 !important;
    }
    
    .bg-white {
        background-color: #1a1a1a !important;
        color: #ffffff !important;
    }
}

/* =============================================================================
   PRINT STYLES
   ============================================================================= */
@media print {
    .whatsapp-float,
    .back-to-top,
    .cookie-notice,
    .top-bar,
    .emergency-banner {
        display: none !important;
    }
    
    .main-header {
        position: static !important;
        box-shadow: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* =============================================================================
   UTILITY CLASSES
   ============================================================================= */
.text-gradient-primary {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-gradient-primary {
    border: 2px solid;
    border-image: var(--primary-gradient) 1;
}

.hover-lift {
    transition: transform var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.brand-hero {
    padding-top:100px!important;
}

.service-hero {
    padding-top:100px!important;
}

.brands-header {
    padding-top:100px!important;
}

.contact-header {
    padding-top:100px!important;
}
.services-header {
    padding-top:100px!important;
}
.page-header {
    padding-top:100px!important;
}

/* Bottom strip with oval button */
.bottom-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #d73027;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Oval button in the center */
.call-service-btn {
  position: absolute;
  top: -25px;
  background: #d73027;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 20px 35px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  font-family: inherit;
  text-decoration: none;
}

.call-service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.2);
  background: #c0392b;
}

.call-service-btn:active {
  transform: translateY(-1px);
}

/* Phone icon */
.phone-icon {
  width: 22px;
  height: 22px;
  fill: white;
}

/* Button text */
.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.btn-main-text {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.btn-main-text a {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin: 0;
  text-decoration: none;
}

.btn-main-text a:hover {
  color: white;
}

.btn-sub-text {
  font-size: 12px;
  font-weight: 400;
  color: white;
  opacity: 0.95;
  margin: 0;
}

/* Left and right decorative elements on strip */
.strip-decoration {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.strip-decoration.left {
  left: 50px;
}

.strip-decoration.right {
  right: 50px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .bottom-strip {
    height: 55px;
  }
  
  .call-service-btn {
    top: -22px;
    padding: 18px 30px;
  }
  
  .phone-icon {
    width: 20px;
    height: 20px;
  }
  
  .btn-main-text {
    font-size: 15px;
  }
  
  .btn-sub-text {
    font-size: 11px;
  }
  
  .strip-decoration {
    width: 60px;
  }
  
  .strip-decoration.left {
    left: 30px;
  }
  
  .strip-decoration.right {
    right: 30px;
  }
}