/* White Glove Custom Styles */
* {
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Typography */
.display-1 {
    font-weight: 900;
    letter-spacing: -2px;
}

.display-4 {
    font-weight: 800;
    letter-spacing: -1px;
}

/* Buttons */
.btn {
    border-width: 2px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: white;
    color: #000;
    transform: translateY(-2px);
}

.btn-outline-dark:hover {
    background-color: #000;
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar-brand {
    font-weight: 800;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    opacity: 0.8;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: white;
    transition: all 0.3s ease;
}

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

/* Sections */
section {
    position: relative;
}

/* About Section */
.company-description h3 {
    line-height: 1.4;
    color: #333;
}

/* Contact Section */
.contact-info a {
    transition: all 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}

/* Footer */
footer.bg-black {
    background-color: #000 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
        height: auto;
        min-height: 80vh;
    }
    
    .display-1 {
        font-size: 3rem !important;
    }
    
    .display-4 {
        font-size: 2.5rem !important;
    }
    
    .navbar {
        padding: 1rem 0 !important;
    }
    
    .company-description h3 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.5rem !important;
    }
    
    .btn-lg {
        padding: 0.75rem 2rem !important;
        font-size: 0.9rem !important;
    }
}

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

/* Background Colors */
.bg-light {
    background-color: #f8f9fa !important;
}

.bg-dark {
    background-color: #2d2d2d !important;
}

/* Text Colors */
.text-light {
    opacity: 0.8;
}

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

.hero-section h1 {
    animation: fadeInUp 1s ease-out;
}

.hero-section .btn {
    animation: fadeInUp 1s ease-out 0.3s both;
}