/* Custom styles and overrides */
:root {
    --midnight: #0B1D3A;
    --mint: #2DD4BF;
    --cream: #F8FAFC;
}

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

body {
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--mint);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #14B8A6;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Geometric pattern overlay */
.pattern-overlay {
    background-image: radial-gradient(circle at 25% 25%, rgba(45, 212, 191, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(45, 212, 191, 0.05) 0%, transparent 50%);
}

/* Button focus states */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

/* Mobile menu animation */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#mobile-menu.active {
    max-height: 400px;
}

/* Card shadow on hover */
.card-hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Service card icon container */
.service-icon {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, rgba(45, 212, 191, 0.05) 100%);
    border: 1px solid rgba(45, 212, 191, 0.2);
}

/* Testimonial quote marks */
.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--mint);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: 'Playfair Display', serif;
}

/* Form input transitions */
input,
select,
textarea {
    transition: all 0.3s ease;
}

/* Floating animation delay */
.float-delay {
    animation-delay: 1s;
}

/* Geometric shapes */
.geometric-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Navbar transition */
#navbar {
    transition: all 0.3s ease;
}

#navbar.nav-scrolled {
    padding: 0.5rem 0;
}

/* Hover effects for links */
a {
    text-decoration: none;
}

/* Image object fit */
img {
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-gradient {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Print styles */
@media print {
    .geometric-shape,
    .float-animation,
    .float-delay {
        display: none;
    }
}
