/* ==========================================================================
   KLASS CUTZ - ORIGINAL DESIGN SYSTEM
   Custom Design by CyNet Security & Design LLC
   ========================================================================== */

/* ==========================================================================
   1.0 IMPORTS & FONTS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ==========================================================================
   2.0 CSS VARIABLES - COLOR SYSTEM
   ========================================================================== */
:root {
    /* Primary Colors - Keeping your current palette */
    --primary-black: #000000;
    --primary-gold: #D4AF37;
    --primary-white: #ffffff;
    --primary-gray: #777777;
    --primary-dark-gray: #282828;
    --primary-light-gray: #f8f9fa;
    
    /* Secondary Colors */
    --secondary-dark: #222227;
    --secondary-light: #eeeeee;
    --accent-gold: #D4AF37;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   3.0 RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--primary-gray);
    background: url('../img/background.jpeg') no-repeat center center fixed;
    background-size: cover;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   4.0 TYPOGRAPHY SYSTEM
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-dark-gray);
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 500;
}

h5 {
    font-size: 1.125rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}

p {
    margin-bottom: var(--space-sm);
    font-size: 1rem;
    line-height: 1.7;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark-gray);
    text-decoration: underline;
}

/* ==========================================================================
   5.0 LAYOUT SYSTEM
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--space-md);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(-1 * var(--space-sm));
}

.col {
    flex: 1;
    padding: 0 var(--space-sm);
}

.col-12 { flex: 0 0 100%; }
.col-11 { flex: 0 0 91.666667%; }
.col-10 { flex: 0 0 83.333333%; }
.col-9 { flex: 0 0 75%; }
.col-8 { flex: 0 0 66.666667%; }
.col-7 { flex: 0 0 58.333333%; }
.col-6 { flex: 0 0 50%; }
.col-5 { flex: 0 0 41.666667%; }
.col-4 { flex: 0 0 33.333333%; }
.col-3 { flex: 0 0 25%; }
.col-2 { flex: 0 0 16.666667%; }
.col-1 { flex: 0 0 8.333333%; }

/* ==========================================================================
   6.0 HEADER & NAVIGATION
   ========================================================================== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    min-height: 80px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark-gray);
    text-decoration: none;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    margin-right: var(--space-sm);
}

.navbar-nav {
    display: flex;
    list-style: none;
    align-items: center;
    gap: var(--space-lg);
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-dark-gray);
    text-decoration: none;
    padding: var(--space-xs) 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

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

/* ==========================================================================
   7.0 HERO SECTIONS
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-dark) 100%);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.hero::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--primary-white);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   8.0 BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #B8941F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-white);
    text-decoration: none;
}

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

.btn-secondary:hover {
    background: var(--primary-dark-gray);
    color: var(--primary-white);
    text-decoration: none;
}

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

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-white);
    text-decoration: none;
}

/* ==========================================================================
   9.0 SECTIONS
   ========================================================================== */
.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

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

/* Special section backgrounds */
.section[style*="background-color: var(--primary-light-gray)"]::before {
    background: rgba(248, 249, 250, 0.9);
}

.section[style*="background: linear-gradient"]::before {
    background: none;
}

.section[style*="background-color: var(--primary-black)"]::before {
    background: rgba(0, 0, 0, 0.8);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
    color: var(--primary-dark-gray);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--primary-gray);
    margin-bottom: var(--space-lg);
}

.section-description {
    font-size: 1.125rem;
    color: var(--primary-gray);
    line-height: 1.7;
}

/* ==========================================================================
   10.0 CARDS
   ========================================================================== */
.card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

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

.card-header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--secondary-light);
}

.card-body {
    padding: var(--space-lg);
}

.card-footer {
    padding: var(--space-lg);
    background: var(--primary-light-gray);
    border-top: 1px solid var(--secondary-light);
}

/* ==========================================================================
   11.0 RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .navbar-nav {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-white);
        box-shadow: var(--shadow-lg);
        padding: var(--space-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .navbar-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-nav li {
        margin: var(--space-xs) 0;
    }
    
    .navbar-nav .nav-link {
        display: block;
        padding: var(--space-sm);
        text-align: center;
        border-bottom: 1px solid var(--secondary-light);
    }
    
    .navbar-nav .btn {
        margin: var(--space-sm) auto;
        display: block;
        width: fit-content;
    }
    
    .col {
        flex: 0 0 100%;
        margin-bottom: var(--space-md);
    }
    
    .hero {
        min-height: 80vh;
        padding: var(--space-xl) 0;
    }
    
    .section {
        padding: var(--space-xl) 0;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   12.0 UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

/* ==========================================================================
   14.0 FOOTER
   ========================================================================== */
.footer {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-brand {
    margin-bottom: var(--space-xl);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer h3 {
    color: var(--primary-white);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.footer h4 {
    color: var(--accent-gold);
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
    text-decoration: none;
}

.footer-contact .contact-item {
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: var(--accent-gold);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary-white);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    margin-top: var(--space-xl);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
    justify-content: flex-end;
    flex-wrap: wrap;
}

.social-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-white);
    text-decoration: none;
}

/* ==========================================================================
   15.0 SERVICES LAYOUT - 3+2 LAYOUT
   ========================================================================== */
.services-5-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-md);
}

.services-5-layout .col-3 {
    flex: 0 0 calc(25% - var(--space-md));
    max-width: calc(25% - var(--space-md));
}

/* First row: 3 items */
.services-5-layout .col-3:nth-child(1),
.services-5-layout .col-3:nth-child(2),
.services-5-layout .col-3:nth-child(3) {
    flex: 0 0 calc(25% - var(--space-md));
    max-width: calc(25% - var(--space-md));
}

/* Second row: 2 centered items */
.services-5-layout .col-3:nth-child(4),
.services-5-layout .col-3:nth-child(5) {
    flex: 0 0 calc(25% - var(--space-md));
    max-width: calc(25% - var(--space-md));
}

/* Center the second row by creating a centered container */
.services-5-layout .col-3:nth-child(4) {
    margin-right: calc(12.5% + var(--space-md));
}

.services-5-layout .col-3:nth-child(5) {
    margin-left: 0;
}

/* Make service cards square and consistent (only for actual service cards) */
.services .pricing-item,
.pricing .pricing-item {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    max-width: 280px;
    margin: 0 auto;
}

.services .pricing-item .card-body,
.pricing .pricing-item .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-md);
}

.services .pricing-item .service-price,
.pricing .pricing-item .service-price {
    margin-top: auto;
}

/* Team section cards should remain normal (not square) */
.team .card {
    aspect-ratio: auto;
    max-width: none;
    margin: 0;
}

.team .card-body {
    flex: none;
    display: block;
    padding: var(--space-md);
    text-align: center;
}

.team .card img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
    /* Force services-5-layout to behave exactly like regular row on mobile */
    .services-5-layout {
        display: flex !important;
        flex-wrap: wrap !important;
        margin: 0 calc(-1 * var(--space-sm)) !important;
        gap: 0 !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
    
    .services-5-layout .col-3,
    .services-5-layout .col-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 var(--space-sm) var(--space-sm) var(--space-sm) !important;
        margin: 0 !important;
    }
    
    .services-5-layout .col-3:nth-child(4),
    .services-5-layout .col-3:nth-child(5) {
        margin: 0 !important;
    }
    
    /* Service cards return to natural height on mobile */
    .services .pricing-item,
    .pricing .pricing-item {
        aspect-ratio: auto;
        max-width: none;
    }
    
    /* Team cards remain normal on mobile */
    .team .card {
        aspect-ratio: auto;
        max-width: none;
    }
    
    /* Center footer content on mobile */
    .footer-bottom .row {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: var(--space-sm);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Mobile contact page - stack vertically and center */
    .contact .row {
        flex-direction: column;
        align-items: center;
    }
    
    .contact .col-6 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }
    
    .contact-info-box .card {
        text-align: center;
    }
    
    .contact-info-box .card-header {
        text-align: center;
    }
    
    .contact-info-box .card-body {
        text-align: center;
    }
    
    .contact .contact-details,
    .contact .contact-item {
        text-align: center;
    }
    
    .contact .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
    }
    
    .contact .contact-content {
        text-align: center;
    }
    
    .contact .contact-content h4 {
        text-align: center;
    }
    
    .contact .contact-content p {
        text-align: center;
    }
    
    .contact .social-links {
        text-align: center;
    }
    
    .contact .social-links h4 {
        text-align: center;
    }
    
    .contact .social-buttons {
        justify-content: center;
        text-align: center;
    }
    
    
    .contact .contact-info {
        text-align: center;
    }
    
    .contact .contact-details {
        text-align: center;
    }
    
    .contact .contact-item {
        text-align: center;
    }
}

/* ==========================================================================
   16.0 MOBILE MENU
   ========================================================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark-gray);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==========================================================================
   16.0 MAIN CONTENT
   ========================================================================== */
.main-content {
    margin-top: 80px;
}

/* ==========================================================================
   17.0 ABOUT PAGE STYLES
   ========================================================================== */
.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: var(--space-lg);
    height: 100%;
}

.about-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

/* Ensure the column takes full height for proper vertical centering */
.col-6:has(.about-image) {
    display: flex;
    align-items: stretch;
}

@media (max-width: 768px) {
    .about-image {
        min-height: 300px;
        margin-top: var(--space-lg);
    }
    
    .about-logo {
        max-width: 250px;
    }
    
    .col-6:has(.about-image) {
        display: block;
    }
}

/* ==========================================================================
   18.0 SERVICE CARDS CENTERING
   ========================================================================== */
.service-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: var(--space-lg);
}

.service-card h4 {
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
    font-weight: 600;
}

.service-card p {
    margin-bottom: var(--space-md);
    flex-grow: 1;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-top: auto;
}

.pricing-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: var(--space-lg);
}

.pricing-item h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
    font-weight: 600;
}

.pricing-item p {
    margin-bottom: var(--space-md);
    flex-grow: 1;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1.4;
}

.pricing-item .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-top: auto;
}

/* ==========================================================================
   19.0 SOCIAL MEDIA ICONS
   ========================================================================== */
.footer-social {
    display: flex;
    gap: var(--space-md);
    justify-content: flex-end;
    align-items: center;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--primary-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social .social-link:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.footer-social .social-link svg {
    transition: all 0.3s ease;
}

.footer-social .social-link:hover svg {
    transform: scale(1.1);
}

.social-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.social-buttons .btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all 0.3s ease;
}

.social-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.social-buttons .btn svg {
    transition: all 0.3s ease;
}

.social-buttons .btn:hover svg {
    transform: scale(1.1);
}

/* ==========================================================================
   19.0 PRINT STYLES
   ========================================================================== */
@media print {
    .header,
    .btn,
    .navbar,
    .footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}
