body { border: none !important; }
/* CSS Custom Properties */
:root {
    --primary-color: 220 13% 18%; /* #2C3E50 - Dark Blue-Gray */
    --secondary-color: 210 29% 24%; /* #34495E - Medium Blue-Gray */
    --accent-color: 204 86% 53%; /* #3498DB - Blue */
    --text-primary: 220 13% 18%; /* #2C3E50 */
    --text-secondary: 210 8% 35%; /* #525866 */
    --text-light: 210 6% 65%; /* #9CA3AF */
    --background: 210 11% 98%; /* #F5F7FA */
    --surface: 0 0% 100%; /* #FFFFFF */
    --border: 210 14% 89%; /* #E1E8ED */
    --shadow: 210 40% 8%; /* #0F172A */
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --header-height: 80px;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-family);
    background-color: hsl(var(--background));
    color: hsl(var(--text-primary));
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(3rem, 6vw, 5rem); 
    color: hsl(var(--text-primary));
    font-weight: 700;
}

h2 { 
    font-size: clamp(2.5rem, 5vw, 4rem); 
    color: hsl(var(--text-primary));
    font-weight: 600;
}

h3 { 
    font-size: clamp(1.75rem, 4vw, 2.5rem); 
    color: hsl(var(--text-primary));
    font-weight: 600;
}

/* Blue underline for headers */
.about-header h1,
.about-header h2,
.about-section h2,
.about-section h3,
.contact-content h2 {
    position: relative;
    display: inline-block;
}

.about-header h1::after,
.about-header h2::after,
.about-section h2::after,
.about-section h3::after,
.contact-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: hsl(var(--accent-color));
    border-radius: 2px;
}

/* Hero title underline */
.hero-title {
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: hsl(var(--accent-color));
    border-radius: 2px;
    animation: lineGrow 1s ease-out 0.5s both;
}

@keyframes lineGrow {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

p {
    margin-bottom: 1rem;
    color: hsl(var(--text-secondary));
}

.about p {
    color: hsl(var(--text-primary));
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.7;
    color: hsl(var(--text-secondary));
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: hsla(var(--surface), 0.98);
    box-shadow: 0 4px 20px hsla(var(--shadow), 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    color: hsl(var(--text-primary));
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: hsl(var(--accent-color));
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: hsl(var(--accent-color));
    border-radius: 1px;
    transition: var(--transition);
}

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

.nav-link.btn {
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin-left: 1rem;
}

.nav-link.btn-primary {
    background: hsl(var(--accent-color));
    color: white;
    border: none;
}

.nav-link.btn-primary:hover {
    background: hsl(var(--accent-color) / 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px hsla(var(--accent-color), 0.3);
}

.nav-link.btn-primary::after {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, 
        hsl(var(--primary-color)), 
        hsl(var(--secondary-color)));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero.webp') center/cover no-repeat;
    z-index: -2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        hsla(var(--primary-color), 0.9), 
        hsla(var(--secondary-color), 0.8));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 500px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.02);
}

.hero-logo-img {
    width: 500px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-title {
    font-size: 4rem;
    color: white;
    text-align: center;
    margin-top: -2rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: hsl(var(--accent-color));
    animation: lineGrow 1s ease-out 2.5s forwards;
    border-radius: 2px;
}

@keyframes lineGrow {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: hsl(var(--accent-color));
    color: white;
}

.btn-primary:hover {
    background: hsl(var(--accent-color) / 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px hsla(var(--accent-color), 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    position: relative;
    padding: 6rem 0;
    background: hsl(var(--surface));
    color: hsl(var(--text-primary));
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/about.png') center/cover no-repeat;
    filter: blur(8px) brightness(0.95);
    z-index: -2;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        hsla(var(--surface), 0.95), 
        hsla(var(--background), 0.9));
    z-index: -1;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.about-header {
    margin-bottom: 3rem;
}

.about-text h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: hsl(var(--text-primary));
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: hsl(var(--text-primary));
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: hsl(var(--accent-color));
    border-radius: 2px;
}

.about-text p {
    color: hsl(var(--text-secondary));
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text .lead {
    font-size: 1.3rem;
    color: hsl(var(--text-primary));
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.about-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        hsla(var(--accent-color), 0.02), 
        hsla(var(--accent-color), 0.01));
    border-radius: var(--border-radius);
    opacity: 0;
    transition: var(--transition);
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.about-section:hover::before {
    opacity: 1;
}

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

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    color: hsl(var(--accent-color));
    margin-bottom: 0.5rem;
}

.stat p {
    color: hsl(var(--text-secondary));
    font-weight: 500;
}

.about-phones {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.phone {
    width: 200px;
    height: 400px;
    background: #333;
    border-radius: 20px;
    padding: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.phone:nth-child(2) {
    transform: translateY(20px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        hsl(var(--accent-color)), 
        hsl(var(--secondary-color)));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.meeting-block {
    width: 80%;
    height: 20px;
    margin: 5px auto;
    border-radius: 10px;
    animation: pulse 2s infinite;
}

.meeting-block.blue { background: hsl(var(--accent-color)); }
.meeting-block.teal { background: #17A2B8; }
.meeting-block.green { background: hsl(var(--accent-color)); }
.meeting-block.orange { background: hsl(var(--accent-color)); }
.meeting-block.yellow { background: #FFC107; }

/* Contact Section */
.contact {
    background: linear-gradient(135deg, 
        hsl(var(--primary-color)), 
        hsl(var(--secondary-color)));
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05));
    transform: rotate(-15deg);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    position: relative;
    display: inline-block;
}

.contact-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: white;
    border-radius: 2px;
}

.contact-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-content p.lead {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: 3rem;
}

.contact-content p.lead br {
    display: block;
    margin: 1rem 0;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.05), 
        rgba(255, 255, 255, 0.02));
    border-radius: var(--border-radius);
    pointer-events: none;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: white;
    color: hsl(var(--accent-color));
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.5s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: hsl(var(--text-primary));
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

.footer-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    color: hsl(var(--accent-color));
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: hsl(var(--accent-color));
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: hsl(var(--accent-color));
}

/* Connection Animation */
.connection-animation {
    position: relative;
    width: 200px;
    height: 100px;
    margin: 2rem auto;
}

.circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: hsl(var(--accent-color));
    position: absolute;
    top: 20px;
    animation: pulse 2s infinite;
}

.circle-left {
    left: 0;
    animation: moveLeft 3s ease-in-out infinite;
}

.circle-right {
    right: 0;
    animation: moveRight 3s ease-in-out infinite;
}

.connection-line {
    position: absolute;
    top: 50px;
    left: 60px;
    width: 80px;
    height: 4px;
    background: hsl(var(--accent-color));
    border-radius: 2px;
    animation: connect 3s ease-in-out infinite;
}

.overlap {
    position: absolute;
    top: 20px;
    left: 70px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: hsl(var(--secondary-color));
    opacity: 0;
    animation: overlap 3s ease-in-out infinite;
}

@keyframes moveLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@keyframes moveRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

@keyframes connect {
    0%, 100% { 
        width: 80px;
        opacity: 0.5;
    }
    50% { 
        width: 100px;
        opacity: 1;
    }
}

@keyframes overlap {
    0%, 100% { 
        opacity: 0;
        transform: scale(0.8);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes slowZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Learn More Button */
.learn-more-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: white;
    color: hsl(var(--accent-color));
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    margin: 2rem 0;
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.5s;
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    color: hsl(var(--accent-color));
}

.learn-more-btn:hover::before {
    left: 100%;
}

.learn-more-btn:active {
    transform: translateY(-1px);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    padding: 1rem 0;
    border: 1px solid rgba(0,0,0,0.1);
}

.nav-dropdown.open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: hsl(var(--text-primary));
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: hsl(var(--accent-color) / 0.1);
    color: hsl(var(--accent-color));
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }

    .hero-logo {
        max-width: 250px;
    }

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

    .about-text {
        padding: 2rem 1.5rem;
    }

    .about-section {
        padding: 1.5rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .contact-content {
        padding: 2rem 1.5rem;
    }

    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-content p.lead {
        font-size: 1.2rem;
    }

    .learn-more-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text .lead {
        font-size: 1.1rem;
    }

    .contact-content p.lead {
        font-size: 1.1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu > li {
        margin: 1rem 0;
    }

    .nav-link, .dropdown-toggle {
        color: hsl(var(--text-primary));
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        display: block;
        width: 100%;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown > .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        border: none;
        display: none;
    }

    .nav-dropdown.open > .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.5rem 2rem;
        color: hsl(var(--text-secondary));
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    gap: 4px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: hsl(var(--text-primary));
    transition: var(--transition);
    border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-link, .dropdown-toggle {
        width: 100%;
        text-align: center;
    }

    .nav-dropdown > .dropdown-toggle {
        justify-content: center;
    }

    .nav-dropdown > .dropdown-menu {
        width: 100%;
        text-align: center;
    }

    .nav-dropdown.open > .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-logo {
        max-width: 200px;
    }

    section {
        padding: 3rem 0;
    }

    .about-text h3 {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .contact-content h2 {
        font-size: 1.8rem;
    }

    .contact-content p.lead {
        font-size: 1rem;
    }

    .learn-more-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text .lead {
        font-size: 1rem;
    }

    .contact-content p.lead {
        font-size: 1rem;
    }

    .hamburger {
        padding: 0.3rem;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
    }
}

/* Teams Page Specific Styles */
#teams {
    background: hsl(var(--surface));
    position: relative;
    overflow: hidden;
}

#teams::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(45deg, 
        hsla(var(--accent-color), 0.05), 
        hsla(var(--accent-color), 0.02));
    transform: rotate(15deg);
    z-index: 1;
}

#teams .about-content, #teams .container {
    position: relative;
    z-index: 2;
}

#teams .about-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: hsl(var(--text-primary));
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    display: inline-block;
}

#teams .about-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: hsl(var(--accent-color));
    border-radius: 2px;
}

#teams .about-header .lead {
    font-size: 1.4rem;
    color: hsl(var(--text-secondary));
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#teams .about-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#teams .about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        hsla(var(--accent-color), 0.02), 
        hsla(var(--accent-color), 0.01));
    border-radius: var(--border-radius);
    opacity: 0;
    transition: var(--transition);
}

#teams .about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

#teams .about-section:hover::before {
    opacity: 1;
}

#teams .about-section h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: hsl(var(--text-primary));
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

#teams .about-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: hsl(var(--accent-color));
    border-radius: 2px;
}

#teams .about-section p {
    color: hsl(var(--text-secondary));
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

#teams .about-section ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

#teams .about-section ul li {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: var(--transition);
}

#teams .about-section ul li strong {
    display: block;
    color: hsl(var(--text-primary));
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

#teams .about-section ul li span {
    display: block;
    color: hsl(var(--text-secondary));
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

#teams .about-section:last-child {
    background: rgba(255, 255, 255, 0.95);
}

#teams .about-section:last-child h3,
#teams .about-section:last-child p {
    text-align: center;
}

@media (max-width: 768px) {
    #teams .about-header h2 {
        font-size: 2rem;
    }

    #teams .about-header .lead {
        font-size: 1.2rem;
    }

    #teams .about-section {
        padding: 1.5rem;
    }

    #teams .about-section h3 {
        font-size: 1.3rem;
    }

    #teams .about-section p {
        font-size: 1rem;
    }

    #teams .about-section ul {
        margin: 1.5rem 0;
    }

    #teams .about-section ul li {
        margin-bottom: 1rem;
        padding: 0.8rem;
    }
}

/* Partners Page Specific Styles */
.partnership-questions {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.question-item {
    background: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid hsl(var(--border));
    box-shadow: 0 2px 8px hsla(var(--shadow), 0.05);
    transition: var(--transition);
    position: relative;
}

.question-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: hsl(var(--accent-color));
    border-radius: 2px 0 0 2px;
}

.question-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px hsla(var(--shadow), 0.1);
}

.question-item h3 {
    color: hsl(var(--text-primary));
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.question-item h3::after {
    display: none;
}

.question-item p {
    color: hsl(var(--text-secondary));
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.partnership-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.partnership-benefits li {
    background: hsl(var(--surface));
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid hsl(var(--accent-color));
    box-shadow: 0 2px 8px hsla(var(--shadow), 0.05);
    transition: var(--transition);
    position: relative;
}

.partnership-benefits li::before {
    content: '✓';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    background: hsl(var(--accent-color));
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
}

.partnership-benefits li:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px hsla(var(--shadow), 0.1);
}

.partnership-benefits li strong {
    color: hsl(var(--text-primary));
    font-weight: 600;
}

/* Active nav link styling */
.nav-link.active {
    color: hsl(var(--accent-color));
    font-weight: 600;
}

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

/* Responsive adjustments for partners page */
@media (max-width: 768px) {
    .partnership-questions {
        gap: 1.5rem;
    }
    
    .question-item {
        padding: 1.5rem;
    }
    
    .question-item h3 {
        font-size: 1.125rem;
    }
    
    .partnership-benefits li {
        padding: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .partnership-benefits li::before {
        width: 20px;
        height: 20px;
        left: -10px;
        font-size: 0.75rem;
    }
    
    .about-section.flex-profile > div:first-child img {
        max-width: 200px !important;
        width: 200px !important;
        height: auto !important;
        object-fit: contain !important;
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .question-item {
        padding: 1.25rem;
    }
    
    .question-item h3 {
        font-size: 1rem;
    }
    
    .partnership-benefits li {
        padding: 1rem;
    }
} 

/* Testimonial Carousel Styles - Increased Specificity */
section.testimonial-carousel-section {
  background: hsl(var(--surface));
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(40,40,60,0.10);
  padding: 3em 0 3.5em 0;
  margin: 4em auto 4em auto;
  max-width: 700px;
  text-align: center;
  position: relative;
}
section.testimonial-carousel-section .testimonial-title {
  color: hsl(var(--accent-color));
  font-size: 2.1em;
  font-weight: 700;
  margin-bottom: 1.5em;
  letter-spacing: -0.01em;
}
section.testimonial-carousel-section .testimonial-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  position: relative;
  min-height: 220px;
}
section.testimonial-carousel-section .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: hsl(var(--background));
  border: none;
  font-size: 2.3em;
  color: hsl(var(--accent-color));
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(40,40,60,0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
section.testimonial-carousel-section .carousel-arrow.left { left: -60px; }
section.testimonial-carousel-section .carousel-arrow.right { right: -60px; }
section.testimonial-carousel-section .carousel-arrow:hover,
section.testimonial-carousel-section .carousel-arrow:focus {
  background: hsl(var(--accent-color));
  color: #fff;
  box-shadow: 0 4px 16px rgba(40,40,60,0.13);
}
section.testimonial-carousel-section .testimonial-slide {
  display: none !important;
  flex: 1 0 100%;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.5s, transform 0.5s;
  min-width: 0;
}
section.testimonial-carousel-section .testimonial-slide.active {
  display: block !important;
  opacity: 1;
  transform: scale(1);
}
section.testimonial-carousel-section .testimonial-slide blockquote {
  color: hsl(var(--text-primary));
  background: hsl(var(--background));
  border-radius: 18px;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 4px 24px rgba(40,40,60,0.10);
  padding: 2.2em 2em 1.5em 2em;
  margin: 0;
  font-size: 1.18em;
  font-style: italic;
  line-height: 1.7;
  position: relative;
  min-width: 260px;
}
section.testimonial-carousel-section .testimonial-author {
  color: hsl(var(--accent-color));
  font-weight: 600;
  font-size: 1.08em;
  margin-top: 1.3em;
  display: block;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  section.testimonial-carousel-section .carousel-arrow.left { left: -10px; }
  section.testimonial-carousel-section .carousel-arrow.right { right: -10px; }
  section.testimonial-carousel-section {
    max-width: 98vw;
    margin-left: 1vw;
    margin-right: 1vw;
  }
  section.testimonial-carousel-section .testimonial-carousel {
    padding: 0 60px;
  }
}
@media (max-width: 700px) {
  section.testimonial-carousel-section {
    padding: 1.5em 0 2em 0;
  }
  section.testimonial-carousel-section .testimonial-slide blockquote {
    font-size: 1em;
    padding: 1.2em 0.7em 1em 0.7em;
  }
  section.testimonial-carousel-section .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.5em;
  }
  section.testimonial-carousel-section .testimonial-carousel {
    padding: 0 50px;
  }
} 

@media (max-width: 480px) {
  .about-section.flex-profile > div:first-child img {
    max-width: 180px !important;
    width: 180px !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
  }
  
  section.testimonial-carousel-section .carousel-arrow.left { left: -5px; }
  section.testimonial-carousel-section .carousel-arrow.right { right: -5px; }
  section.testimonial-carousel-section .testimonial-carousel {
    padding: 0 40px;
  }
  section.testimonial-carousel-section .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.2em;
  }
} 