/* The Tattoo Valley - Custom CSS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* Brand Color Variables */
:root {
    --primary-black: #1a1a1a;
    --secondary-black: #2d2d2d;
    --light-gray: #f5f5f5;
    --medium-gray: #e5e5e5;
    --very-light-gray: #f9f9f9;
    --dark-gray: #4a4a4a;
    --accent-gray: #888888;
    --white: #ffffff;
    --shadow-light: rgba(0,0,0,0.1);
    --shadow-medium: rgba(0,0,0,0.15);
    --shadow-dark: rgba(0,0,0,0.25);
}

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

body {
    background-color: var(--light-gray);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--primary-black);
    overflow-x: hidden;
}

/* Client Portal Background */
.client-portal-body {
    background-color: var(--accent-gray);
    color: var(--white);
    min-height: 100vh;
}

.client-portal-body .container {
    background-color: var(--accent-gray);
}

/* Ensure dropdowns work properly on dark background */
.client-portal-body .dropdown-menu {
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    position: absolute;
    z-index: 1050;
}

.client-portal-body .dropdown-item {
    color: var(--primary-black);
}

.client-portal-body .dropdown-item:hover {
    background-color: var(--light-gray);
}

.main-content {
    min-height: calc(100vh - 200px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-black);
}

.display-1, .display-2, .display-3, .display-4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Navigation Styles */
.navbar {
    background-color: var(--primary-black) !important;
    box-shadow: 0 4px 20px var(--shadow-light);
    border-bottom: 1px solid var(--secondary-black);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--secondary-black) !important;
    box-shadow: 0 6px 30px var(--shadow-medium);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--white) !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--medium-gray) !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white) !important;
    padding: 0.75rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--light-gray) !important;
    background-color: var(--secondary-black);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    background-color: var(--dark-gray);
    color: var(--white) !important;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 25%, rgba(255,255,255,0.02) 25%, rgba(255,255,255,0.02) 75%, transparent 75%),
        linear-gradient(-45deg, transparent 25%, rgba(255,255,255,0.02) 25%, rgba(255,255,255,0.02) 75%, transparent 75%);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--accent-gray);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title .title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .title-emphasis {
    font-style: italic;
    color: var(--accent-gray);
    animation-delay: 0.2s;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    gap: 1rem;
}

.divider-line {
    width: 80px;
    height: 2px;
    background: var(--medium-gray);
    border-radius: 1px;
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--medium-gray);
    font-style: italic;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-description p {
    margin-bottom: 1.5rem;
}

.hero-quote {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 3rem 0;
    color: var(--medium-gray);
    font-style: italic;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-quote i {
    font-size: 1rem;
    opacity: 0.6;
    margin: 0 1rem;
}

.cta-buttons {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

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

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    padding: 2rem 0;
}

.about-points {
    margin-top: 3rem;
}

.about-points .point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-points .point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.about-points .point i {
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.about-points .point h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-black);
}

.about-points .point p {
    margin: 0;
    color: var(--dark-gray);
    line-height: 1.6;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--medium-gray), var(--light-gray));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    border: 2px dashed var(--accent-gray);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--primary-black);
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-section .section-subtitle {
    color: var(--medium-gray);
    margin-bottom: 3rem;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-quote {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .about-points .point {
        flex-direction: column;
        text-align: center;
    }
    
    .about-points .point i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

.hero-logo {
    margin-bottom: 2rem;
    z-index: 3;
    position: relative;
}

.main-logo {
    max-width: 300px;
    height: auto;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

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

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px var(--shadow-dark);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* Button Styles */
.btn {
    font-weight: 500;
    border-radius: 8px;
    padding: 12px 30px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Primary Button Styles */
.btn-primary {
    background-color: var(--primary-black) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-black) !important;
}

.btn-primary:hover {
    background-color: var(--secondary-black) !important;
    border-color: var(--secondary-black) !important;
    color: var(--white) !important;
}

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

.btn-outline-primary:hover {
    background-color: var(--primary-black) !important;
    border-color: var(--primary-black) !important;
    color: var(--white) !important;
}

/* Dark Button Styles */
.btn-dark {
    background-color: var(--primary-black) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-black) !important;
}

.btn-dark:hover {
    background-color: var(--secondary-black) !important;
    border-color: var(--secondary-black) !important;
    color: var(--white) !important;
}

.btn-outline-dark {
    background-color: transparent !important;
    color: var(--primary-black) !important;
    border: 2px solid var(--primary-black) !important;
}

.btn-outline-dark:hover {
    background-color: var(--primary-black) !important;
    border-color: var(--primary-black) !important;
    color: var(--white) !important;
}

/* Secondary Button Styles */
.btn-secondary {
    background-color: var(--dark-gray) !important;
    color: var(--white) !important;
    border: 2px solid var(--dark-gray) !important;
}

.btn-secondary:hover {
    background-color: var(--accent-gray) !important;
    border-color: var(--accent-gray) !important;
    color: var(--white) !important;
}

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

.btn-outline-secondary:hover {
    background-color: var(--dark-gray) !important;
    border-color: var(--dark-gray) !important;
    color: var(--white) !important;
}

/* Success Button Styles */
.btn-success {
    background-color: #2c5530 !important;
    color: var(--white) !important;
    border: 2px solid #2c5530 !important;
}

.btn-success:hover {
    background-color: #1e3a21 !important;
    border-color: #1e3a21 !important;
    color: var(--white) !important;
}

.btn-outline-success {
    background-color: transparent !important;
    color: #2c5530 !important;
    border: 2px solid #2c5530 !important;
}

.btn-outline-success:hover {
    background-color: #2c5530 !important;
    border-color: #2c5530 !important;
    color: var(--white) !important;
}

/* Info Button Styles */
.btn-info {
    background-color: #2c4a5a !important;
    color: var(--white) !important;
    border: 2px solid #2c4a5a !important;
}

.btn-info:hover {
    background-color: #1e3240 !important;
    border-color: #1e3240 !important;
    color: var(--white) !important;
}

.btn-outline-info {
    background-color: transparent !important;
    color: #2c4a5a !important;
    border: 2px solid #2c4a5a !important;
}

.btn-outline-info:hover {
    background-color: #2c4a5a !important;
    border-color: #2c4a5a !important;
    color: var(--white) !important;
}

/* Dark Grey Gallery Button */
.btn-dark-grey {
    background-color: var(--dark-gray) !important;
    color: var(--very-light-gray) !important;
    border: 2px solid var(--dark-gray) !important;
    font-weight: 500;
}

.btn-dark-grey:hover {
    background-color: var(--secondary-black) !important;
    border-color: var(--secondary-black) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

/* Table Scrolling Styles */
.table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
}

.table-nowrap {
    white-space: nowrap;
}

.table-nowrap td {
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table-nowrap th {
    white-space: nowrap;
    min-width: 120px;
}

.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 0.5s ease;
}

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.btn-primary {
    background-color: var(--primary-black);
    color: var(--white);
    border: 2px solid var(--primary-black);
}

.btn-primary:hover {
    background-color: var(--secondary-black);
    border-color: var(--secondary-black);
    color: var(--white);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--white) !important;
    border: 2px solid var(--white);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-black);
    border-color: var(--white);
    color: var(--white) !important;
    text-shadow: none !important;
}

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

.btn-secondary:hover {
    background-color: var(--accent-gray);
    border-color: var(--accent-gray);
    color: var(--white);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
    border-radius: 10px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 280px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.tattoo-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .tattoo-preview {
    transform: scale(1.05);
}

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

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

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.2);
}

/* Gallery Filter */
.gallery-filter {
    margin-top: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--dark-gray);
    color: var(--dark-gray);
    padding: 10px 20px;
    margin: 0 10px 10px 0;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-black);
    border-color: var(--primary-black);
    color: var(--white);
    transform: translateY(-2px);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--medium-gray);
}

.lightbox-image-container {
    text-align: center;
    max-width: 100%;
    max-height: 80vh;
}

#lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: var(--white);
    font-size: 1.1rem;
    margin-top: 20px;
    padding: 0 20px;
    text-align: center;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-nav-btn {
    background: rgba(26, 26, 26, 0.8);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.lightbox-nav-btn:hover {
    background: var(--primary-black);
    transform: scale(1.1);
}

.lightbox-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Portfolio & Gallery Section */
.portfolio-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-black), var(--dark-gray));
    margin: 20px auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--accent-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.4s ease;
    background: var(--white);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.portfolio-placeholder {
    height: 280px;
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--light-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.portfolio-content {
    padding: 1.5rem;
    text-align: center;
}

.portfolio-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.portfolio-content p {
    color: var(--accent-gray);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px var(--shadow-medium);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.testimonial-role {
    color: var(--accent-gray);
    font-size: 0.9rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-black);
    opacity: 0.1;
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 40px var(--shadow-light);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--medium-gray);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px var(--shadow-medium);
    border-color: var(--primary-black);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--dark-gray);
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.service-card p {
    color: var(--accent-gray);
    line-height: 1.7;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    background: var(--white);
}

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

.card-header {
    font-weight: 600;
    border-bottom: 1px solid var(--medium-gray);
    background-color: var(--primary-black);
    color: var(--white);
    border-radius: 15px 15px 0 0 !important;
}

.card-body {
    padding: 2rem;
}

/* Form Styles */
.form-control {
    border-radius: 8px;
    border: 2px solid var(--medium-gray);
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-control:focus {
    border-color: var(--primary-black);
    box-shadow: 0 0 0 0.2rem rgba(26,26,26,0.15);
    background-color: var(--white);
}

.input-group-text {
    background-color: var(--primary-black);
    border-color: var(--primary-black);
    color: var(--white);
    font-weight: 500;
}

.form-label {
    font-weight: 500;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

/* Mosaic Gallery Styles */
.mosaic-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-tile {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 300px;
    margin: 0 auto;
}

.gallery-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.tile-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-tile:hover .portfolio-thumbnail {
    transform: scale(1.05);
}

.tile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--white);
    text-align: center;
    padding: 1rem;
}

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

.tile-info h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.tile-info p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.tile-action i {
    font-size: 1.5rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.gallery-tile:hover .tile-action i {
    transform: scale(1.2);
}

/* Gallery Filters */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.portfolio-filters .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Admin Portfolio Card Styles */
.portfolio-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.portfolio-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .card-img-top {
    transform: scale(1.05);
}

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

.portfolio-card:hover .img-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Instagram Section */
.instagram-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.instagram-carousel {
    margin-bottom: 2rem;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
}

.instagram-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.instagram-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.instagram-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.instagram-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.instagram-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Floating Social Media Icons */
.floating-social {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.social-float:hover {
    transform: translateY(-3px) scale(1.1);
    opacity: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.social-float.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-float.facebook {
    background-color: #1877f2;
}

.social-float.twitter {
    background-color: #1da1f2;
}

.social-float.tiktok {
    background-color: #000000;
}

/* Table Styles */
.table-responsive {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.table {
    margin-bottom: 0;
    background-color: var(--white);
}

.table th {
    background-color: var(--primary-black);
    color: var(--white);
    font-weight: 600;
    border: none;
    padding: 1.2rem 1rem;
    font-size: 0.95rem;
}

.table td {
    padding: 1rem;
    vertical-align: middle;
    border-color: var(--medium-gray);
}

.table-hover tbody tr:hover {
    background-color: var(--light-gray);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    color: var(--white);
    padding: 3rem 0 2rem 0;
    margin-top: auto;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-black), var(--dark-gray), var(--primary-black));
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: var(--dark-gray);
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.social-links a:hover {
    background-color: var(--white);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-medium);
}

/* Badge Styles */
.badge {
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.badge.bg-success {
    background-color: var(--primary-black) !important;
}

.badge.bg-primary {
    background-color: var(--dark-gray) !important;
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
    border-left: 4px solid;
}

.alert-warning {
    background-color: #fff8e1;
    color: #8a6914;
    border-left-color: #ffc107;
}

.alert-info {
    background-color: #e3f2fd;
    color: #0d47a1;
    border-left-color: #2196f3;
}

.alert-success {
    background-color: #e8f5e8;
    color: #2e7d32;
    border-left-color: #4caf50;
}

.alert-danger {
    background-color: #ffebee;
    color: #c62828;
    border-left-color: #f44336;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px var(--shadow-dark);
}

.modal-header {
    border-bottom: 1px solid var(--medium-gray);
    padding: 2rem;
    background-color: var(--primary-black);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid var(--medium-gray);
    padding: 1.5rem 2rem;
    background-color: var(--light-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 2rem 1rem;
    }
    
    .hero-section::before {
        font-size: 4rem;
    }
    
    .main-logo {
        max-width: 250px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .portfolio-placeholder {
        height: 220px;
    }
    
    .service-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .instagram-feed {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .floating-social {
        bottom: 15px;
        right: 15px;
    }
    
    .social-float {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

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

/* Enhanced Button Text Contrast - Force white text on dark backgrounds */
.btn-primary,
.btn-dark,
.btn-secondary,
.btn-success,
.btn-info,
.btn-warning {
    color: var(--white) !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
}

.btn-primary:hover,
.btn-dark:hover, 
.btn-secondary:hover,
.btn-success:hover,
.btn-info:hover {
    color: var(--white) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2) !important;
}

/* Ensure Bootstrap button overrides don't affect contrast */
.btn-primary:focus,
.btn-primary:active,
.btn-dark:focus,
.btn-dark:active,
.btn-secondary:focus,
.btn-secondary:active,
.btn-success:focus,
.btn-success:active,
.btn-info:focus,
.btn-info:active {
    color: var(--white) !important;
    box-shadow: 0 0 0 0.2rem rgba(26,26,26,0.25) !important;
}

/* Warning button text contrast */
.btn-warning {
    background-color: #fd7e14 !important;
    color: var(--white) !important;
    border: 2px solid #fd7e14 !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
}

.btn-warning:hover {
    background-color: #e8690b !important;
    border-color: #e8690b !important;
    color: var(--white) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-black);
    outline-offset: 2px;
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

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

/* Custom Utility Classes */
.text-shadow {
    text-shadow: 2px 2px 8px var(--shadow-dark);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
}

/* Authentication Pages */
.auth-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-medium);
    width: 100%;
    max-width: 450px;
    overflow: hidden;
}

.auth-header {
    background: var(--primary-black);
    color: var(--white);
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
}

.auth-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.auth-header p {
    opacity: 0.9;
    font-size: 1rem;
    margin: 0;
}

.auth-body {
    padding: 2.5rem 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

/* Password Toggle Styles */
.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-container input {
    padding-right: 50px; /* Make room for the toggle button */
}

.password-toggle-btn {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: var(--accent-gray);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.password-toggle-btn:hover {
    color: var(--primary-black);
}

.password-toggle-btn:focus {
    outline: none;
    color: var(--primary-black);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-black);
    box-shadow: 0 0 0 3px rgba(26,26,26,0.1);
}

.form-group small {
    display: block;
    color: var(--accent-gray);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.forgot-password-link {
    text-align: right;
    margin-bottom: 2rem;
}

.auth-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: var(--primary-black);
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.auth-footer {
    background: var(--light-gray);
    padding: 2rem;
    text-align: center;
}

.auth-footer p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.auth-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-register {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    color: var(--white);
    border: 2px solid var(--primary-black);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-register:hover {
    background: var(--white);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--dark-gray);
    border: 2px solid var(--dark-gray);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--dark-gray);
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Alert Improvements for Auth Pages */
.auth-body .alert {
    margin-bottom: 1.5rem;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Mobile Responsive for Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 350px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        margin: 0 5px 8px 0;
        font-size: 0.9rem;
    }
    
    .lightbox-content {
        padding: 10px;
        width: 95%;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-nav-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
    }
    
    #lightbox-image {
        max-height: 60vh;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-image {
        height: 300px;
    }
    
    .gallery-filter {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .filter-btn {
        width: 90%;
        max-width: 250px;
        margin: 0;
        text-align: center;
        padding: 12px 20px;
    }
    
    .filter-btn:nth-child(even) {
        margin-left: 0;
    }
}

/* Mobile Responsive for Auth Pages */
@media (max-width: 576px) {
    .auth-container {
        padding: 1rem 0.5rem;
    }
    
    .auth-header {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }
    
    .auth-header h2 {
        font-size: 1.6rem;
    }
    
    .auth-body {
        padding: 2rem 1.5rem;
    }
    
    .auth-footer {
        padding: 1.5rem;
    }
    
    .auth-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-register,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    .modal,
    footer,
    .social-section,
    .auth-container {
        display: none !important;
    }
    
    .card {
        border: 1px solid var(--primary-black) !important;
        box-shadow: none !important;
    }
    
    .hero-section {
        background: var(--white) !important;
        color: var(--primary-black) !important;
    }
}

/* Indemnity Form Styles */
.form-section {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 1px solid var(--medium-gray);
}

.section-title {
    color: var(--primary-black);
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--medium-gray);
}

.form-section .section-title i {
    margin-right: 0.5rem;
}

/* Health Flag Styling */
.health-flag input[type="checkbox"]:checked + .form-check-label {
    color: #dc3545;
    font-weight: 600;
}

.health-flag.health-warning {
    background-color: #fff3cd;
    border-radius: 8px;
    padding: 10px;
    border-left: 4px solid #ffc107;
}

.health-flag-text.health-warning {
    background-color: #fff3cd;
    border-color: #ffc107;
}

/* Legal Checkboxes */
.legal-checkboxes {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.legal-checkboxes .form-check {
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.legal-checkboxes .form-check-label {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark-gray);
    margin-left: 0.5rem;
}

.legal-checkboxes .form-check-input:checked + .form-check-label {
    color: var(--primary-black);
    font-weight: 500;
}

/* Guardian Section */
#guardianSection {
    background: #ffebee;
    border: 2px solid #f44336;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

#guardianSection .section-title {
    color: #d32f2f;
    border-bottom-color: #f44336;
}

/* Form Type Selection Cards */
.hover-card {
    transition: all 0.3s ease;
    border: 1px solid var(--medium-gray);
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    border-color: var(--primary-black);
}

.card-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    transition: all 0.3s ease;
}

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

/* Form Validation Styles */
.form-control:invalid {
    border-color: #dc3545;
}

.form-control:valid {
    border-color: #28a745;
}

/* Submit Button */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--secondary-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-success:hover {
    background: #20c997;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-black);
}

.btn-warning:hover {
    background: #fd7e14;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
    color: var(--primary-black);
}

/* Form Switch Styles */
.form-check-input:checked {
    background-color: var(--primary-black);
    border-color: var(--primary-black);
}

.form-check-input:focus {
    border-color: var(--primary-black);
    box-shadow: 0 0 0 0.25rem rgba(26, 26, 26, 0.25);
}

/* Age Display */
#age {
    background-color: var(--light-gray);
    font-weight: 600;
    color: var(--dark-gray);
}

/* Responsive Design for Forms */
@media (max-width: 768px) {
    .form-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .legal-checkboxes {
        padding: 1rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .card-icon {
        height: 60px;
    }
    
    .card-icon i {
        font-size: 2rem;
    }
}

