/* Custom CSS for Capitol City Contracting - IBM Plex Sans Edition */

:root {
    --primary: #0B3D91;
    --primary-dark: #082a66;
    --primary-light: #1a4fb3;
    --secondary: #0F6B44;
    --secondary-dark: #0c5534;
    --accent: #D6A33A;
    --accent-dark: #c19132;
    --dark: #1a1d24;
    --dark-gray: #2d3748;
    --medium-gray: #4a5568;
    --light-gray: #f7fafc;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #e6b957 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
}

/* IBM Plex Sans Typography System */
body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

/* Typography Scale */
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.lead {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--medium-gray);
}

/* Enhanced Brand Typography */
.brand-main {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.brand-subtitle {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.8;
}

.brand-tagline {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

/* Premium Navigation */
.navbar {
    background: var(--white) !important;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(11, 61, 145, 0.1);
}

.navbar-brand {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

.brand-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-primary {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.brand-secondary {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--secondary);
    letter-spacing: 0.03em;
}

.nav-link {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    color: var(--dark-gray) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary) !important;
    background: rgba(11, 61, 145, 0.05);
    transform: translateY(-1px);
}

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

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

/* Apple Glass Morphism Hero Section - Responsive */
.hero-section {
    background: linear-gradient(135deg, 
        rgba(11, 61, 145, 0.95) 0%,
        rgba(26, 79, 179, 0.92) 25%,
        rgba(41, 98, 213, 0.89) 50%,
        rgba(56, 116, 247, 0.86) 75%,
        rgba(71, 135, 255, 0.83) 100%);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.25) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

/* Responsive Container */
.hero-container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

/* Glass Morphism Content - Responsive */
.hero-content-glass {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

/* Enhanced Hero Visual - Responsive */
.hero-visual {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    padding: 2rem;
    margin: 1rem 0;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive Typography */
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.3),
        0 1px 1px rgba(255, 255, 255, 0.1);
}

.value-proposition .lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
}

/* Responsive Brand Layout */
.hero-brand .d-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-logo {
    height: clamp(60px, 10vw, 80px);
    width: auto;
    filter: 
        drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3))
        drop-shadow(0 2px 4px rgba(255, 255, 255, 0.2));
}

/* Responsive Button Groups */
.cta-section .d-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.cta-section .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: clamp(0.875rem, 2vw, 1rem);
    border-radius: 12px;
}

/* Glass Buttons - Responsive */
.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

/* Trust Indicators - Responsive */
.trust-indicators .row {
    margin: 0 -0.5rem;
}

.trust-indicators .col-6 {
    padding: 0 0.5rem;
}

.trust-indicators .d-flex {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
}

/* Visual Icon - Responsive */
.visual-icon .display-1 {
    font-size: clamp(3rem, 10vw, 4rem);
}

/* Showcase Gallery - Responsive */
.showcase-track {
    height: clamp(250px, 50vw, 500px);
}

.showcase-overlay {
    padding: clamp(1rem, 3vw, 2rem);
}

.showcase-badge {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    padding: 0.5rem clamp(0.75rem, 2vw, 1rem);
}

.showcase-description {
    font-size: clamp(0.75rem, 2vw, 0.95rem);
}

/* Section Spacing - Responsive */
section {
    padding: clamp(3rem, 8vw, 5rem) 0;
}

.py-6 {
    padding-top: clamp(3rem, 8vw, 5rem) !important;
    padding-bottom: clamp(3rem, 8vw, 5rem) !important;
}

.mb-6 {
    margin-bottom: clamp(3rem, 8vw, 5rem) !important;
}

/* Service Cards - Responsive */
.service-card .card-body {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.service-icon {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
}

/* Process Steps - Responsive */
.step-number {
    width: clamp(70px, 15vw, 100px);
    height: clamp(70px, 15vw, 100px);
}

.step-number span {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Testimonial Cards - Responsive */
.testimonial-card .card-body {
    padding: clamp(1.5rem, 3vw, 2rem);
}

/* Mobile-First Breakpoints */
/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 576px) {
    .hero-section {
        padding: 1.5rem 0;
    }
    
    .hero-content-glass {
        padding: 1.5rem;
        border-radius: 16px;
        margin: 0.5rem;
    }
    
    .hero-visual {
        padding: 1.5rem;
        border-radius: 16px;
        margin: 0.5rem;
        min-height: 250px;
    }
    
    .hero-brand .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-logo {
        margin-right: 0 !important;
        margin-bottom: 0.5rem;
    }
    
    .cta-section .d-grid {
        gap: 0.75rem;
    }
    
    .trust-indicators .col-6 {
        width: 100%;
    }
}

/* Small Devices (phones, 576px and up) */
@media (min-width: 576px) {
    .hero-container {
        max-width: 540px;
    }
    
    .cta-section .d-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cta-section .btn {
        width: auto;
        min-width: 200px;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .hero-container {
        max-width: 720px;
    }
    
    .hero-content-glass {
        padding: 2.5rem;
        border-radius: 24px;
    }
    
    .hero-visual {
        padding: 2.5rem;
        border-radius: 24px;
        min-height: 400px;
    }
    
    .hero-brand .d-flex {
        flex-wrap: nowrap;
    }
    
    .cta-section .d-grid {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .trust-indicators .col-6 {
        width: 50%;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-container {
        max-width: 960px;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-content-glass {
        padding: 3rem;
        margin: 0;
    }
    
    .hero-visual {
        padding: 3rem;
        margin: 0;
        min-height: 500px;
    }
    
    .min-vh-75 {
        min-height: 75vh;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hero-container {
        max-width: 1140px;
    }
    
    .hero-content-glass {
        padding: 3rem;
    }
    
    .hero-visual {
        padding: 3rem;
    }
}

/* XXL Devices (extra large desktops, 1400px and up) */
@media (min-width: 1400px) {
    .hero-container {
        max-width: 1320px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-glass:hover,
    .trust-indicators .d-flex:hover,
    .service-card:hover {
        transform: none;
    }
    
    .btn-glass:active,
    .trust-indicators .d-flex:active {
        transform: scale(0.98);
    }
}

/* High DPI Screen Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-section::before {
        background-size: 100px 100px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero-section::before,
    .floating-element,
    .floating-element-delay {
        animation: none;
    }
    
    .btn-glass::before {
        display: none;
    }
}

/* Print Styles */
@media print {
    .hero-section {
        background: white !important;
        color: black !important;
    }
    
    .hero-content-glass,
    .hero-visual {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }
}

/* Utility Classes for Responsive Alignment */
.text-responsive-center {
    text-align: center;
}

@media (min-width: 768px) {
    .text-responsive-center {
        text-align: left;
    }
}

.d-flex-responsive {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .d-flex-responsive {
        flex-direction: row;
    }
}

.justify-responsive-center {
    justify-content: center;
}

@media (min-width: 768px) {
    .justify-responsive-center {
        justify-content: start;
    }
}

/* Grid System Overrides for Better Mobile Experience */
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1rem;
}

@media (max-width: 576px) {
    .row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 0.75rem;
    }
}

/* Enhanced Cards */
.service-card {
    border: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl) !important;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

/* Enhanced Buttons */
.btn {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    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 0.5s;
}

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

.btn-primary {
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(11, 61, 145, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 61, 145, 0.4);
}

.btn-warning {
    background: var(--gradient-accent);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(214, 163, 58, 0.3);
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 163, 58, 0.4);
    color: var(--dark);
}

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

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

/* Enhanced Trust Section */
.trust-badge {
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 61, 145, 0.1);
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.trust-badge:hover::before {
    opacity: 0.05;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Process Steps Enhancement */
.process-step {
    position: relative;
}

.step-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    z-index: -1;
}

/* Footer Enhancement */
.footer {
    background: var(--dark) !important;
    border-top: 4px solid var(--accent);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

/* Logo Styling */
.logo {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

/* Page Headers */
.page-header-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.page-header-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.page-header-subtitle {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--medium-gray);
}

/* Form Enhancements */
.form-control, .form-select {
    font-family: 'IBM Plex Sans', sans-serif;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
    transform: translateY(-1px);
}

/* Badge Enhancements */
.badge {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-brand {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .brand-primary {
        font-size: 1.1rem;
    }
    
    .brand-secondary {
        font-size: 0.75rem;
    }
    
    .page-header-title {
        font-size: 2.25rem;
    }
    
    .page-header-brand {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

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

.animate-in {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

section.bg-light {
    background-color: var(--light-gray) !important;
}

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

.border-gradient {
    border: 2px solid;
    border-image: var(--gradient-primary) 1;
}

/* Showcase Gallery Styles */
.showcase-gallery {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.showcase-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.3);
}

.showcase-track {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
}

.showcase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    overflow: hidden;
}

.showcase-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.showcase-slide.prev {
    opacity: 0.3;
    transform: translateX(-100%) scale(0.8);
    z-index: 1;
}

.showcase-slide.next {
    opacity: 0.3;
    transform: translateX(100%) scale(0.8);
    z-index: 1;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.showcase-slide.active .showcase-image {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1rem 1rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.showcase-slide.active .showcase-overlay {
    transform: translateY(0);
}

.showcase-badge {
    background: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(214, 163, 58, 0.4);
}

/* Navigation Dots */
.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.dot.active {
    border-color: var(--accent);
}

.dot.active::after {
    transform: translate(-50%, -50%) scale(1);
}

.dot:hover {
    border-color: var(--accent);
    transform: scale(1.2);
}

/* Navigation Arrows */
.showcase-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(214, 163, 58, 0.9);
    border: none;
    color: var(--dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0;
}

.showcase-container:hover .showcase-nav {
    opacity: 1;
}

.showcase-prev {
    left: 1rem;
}

.showcase-next {
    right: 1rem;
}

.showcase-nav:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(214, 163, 58, 0.6);
}

.showcase-nav i {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Showcase Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(-100%) scale(0.9);
    }
}

/* Progress Bar */
.showcase-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.showcase-progress-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 2s linear;
}

.showcase-slide.active ~ .showcase-progress .showcase-progress-bar {
    width: 100%;
}

/* Responsive Design for Showcase */
@media (max-width: 768px) {
    .showcase-track {
        height: 250px;
    }
    
    .showcase-nav {
        width: 40px;
        height: 40px;
        opacity: 1;
    }
    
    .showcase-gallery {
        padding: 1rem;
    }
    
    .showcase-overlay {
        padding: 1.5rem 0.75rem 0.75rem;
    }
    
    .showcase-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Monogram Logo Styles */
.monogram-logo {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

/* S Letter Shape */
.s-letter {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    clip-path: polygon(
        0% 30%, 40% 30%, 40% 0%, 60% 0%, 60% 30%,
        100% 30%, 100% 50%, 60% 50%, 60% 100%,
        40% 100%, 40% 50%, 0% 50%
    );
    z-index: 2;
    transform: rotate(-5deg);
}

/* M Letter Shape */
.m-letter {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    clip-path: polygon(
        0% 0%, 30% 0%, 40% 40%, 50% 0%, 60% 40%,
        70% 0%, 100% 0%, 100% 100%, 70% 100%,
        60% 60%, 50% 100%, 40% 60%, 30% 100%, 0% 100%
    );
    z-index: 1;
    transform: rotate(5deg) scale(0.9);
}

/* Speed Lines */
.speed-line {
    position: absolute;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    z-index: 0;
    animation: speedLine 2s infinite;
}

.speed-line:nth-child(2) {
    top: 30%;
    animation-delay: 0.5s;
}

.speed-line:nth-child(3) {
    top: 70%;
    animation-delay: 1s;
}

/* Animation Keyframes */
@keyframes speedLine {
    0% {
        transform: translateX(-30px) translateY(-50%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(60px) translateY(-50%);
        opacity: 0;
    }
}

/* Footer Logo Styles */
.footer-monogram {
    position: relative;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
}

.footer-s-letter {
    position: absolute;
    width: 23px;
    height: 23px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    clip-path: polygon(
        0% 30%, 40% 30%, 40% 0%, 60% 0%, 60% 30%,
        100% 30%, 100% 50%, 60% 50%, 60% 100%,
        40% 100%, 40% 50%, 0% 50%
    );
    z-index: 2;
    transform: rotate(-5deg);
}

.footer-m-letter {
    position: absolute;
    width: 23px;
    height: 23px;
    background: linear-gradient(135deg, #ff9d4d, #ff7b35);
    clip-path: polygon(
        0% 0%, 30% 0%, 40% 40%, 50% 0%, 60% 40%,
        70% 0%, 100% 0%, 100% 100%, 70% 100%,
        60% 60%, 50% 100%, 40% 60%, 30% 100%, 0% 100%
    );
    z-index: 1;
    transform: rotate(5deg) scale(0.9);
}

/* Hero Logo Size */
.hero-logo .monogram-logo {
    width: 80px;
    height: 80px;
}

.hero-logo .s-letter {
    width: 50px;
    height: 50px;
}

.hero-logo .m-letter {
    width: 50px;
    height: 50px;
}

.hero-logo .speed-line {
    width: 100px;
    height: 3px;
}


/* Enhanced Hero Section for Showcase */
.hero-section .showcase-gallery {
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Loading state for images */
.showcase-image {
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}