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

:root {
    /* Refined Color Palette */
    --primary-color: #2c7a86;
    --primary-hover: #245f68;
    --secondary-color: #468e9a;
    --accent-cream: #f4f1ea;
    --accent-cream-dark: #e8e2d5;
    --dark-bg: #0a1618;
    --dark-bg-lighter: #132426;
    --light-bg: #FFFFFF;
    --text-dark: #1a2426;
    --text-body: #4a5658;
    --text-light: #FFFFFF;
    --text-muted: #8a9496;
    
    /* Refined Grays */
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Base Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-body);
    background: var(--light-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 800;
}

h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: 700;
}

h3 {
    font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
    font-weight: 600;
}

p {
    color: var(--text-body);
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 1536px) {
    .container {
        max-width: 1400px;
    }
}

/* Top Bar - Refined */
.top-bar {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 0.625rem 0;
    font-size: var(--text-sm);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.tagline {
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 0.95;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-sm);
}

.contact-info svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.top-bar .location {
    color: var(--text-light);
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.top-bar .phone-number {
    color: var(--text-light);
    opacity: 1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-base);
    font-weight: 600;
}

.top-bar .phone-number:hover {
    color: var(--secondary-color);
    opacity: 1;
}

/* Navigation - Elevated */
.navbar {
    position: fixed;
    top: 37px;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all var(--transition-slow);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 140px;
    width: auto;
    transition: all var(--transition-base);
    margin-top: 8px;
}

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

.nav-links {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-sm);
    letter-spacing: 0.01em;
    transition: all var(--transition-base);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Contact Button - Premium */
.contact-button {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
    letter-spacing: 0.01em;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.contact-button:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Dropdown */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--light-bg);
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    padding: var(--space-md) 0;
    flex-direction: column;
}

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

.mobile-menu a {
    padding: var(--space-sm) var(--space-lg);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-base);
    transition: all var(--transition-base);
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--primary-color);
    background: var(--gray-50);
}

.mobile-menu-cta {
    margin: var(--space-sm) var(--space-lg) 0;
    background: var(--primary-color) !important;
    color: var(--text-light) !important;
    text-align: center;
    border-radius: 6px;
    padding: var(--space-sm) var(--space-lg) !important;
}

.mobile-menu-cta:hover {
    background: var(--primary-hover) !important;
}

/* Hero Section - Refined */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 109px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('assets/dclive/soccer.jpg');
    background-size: cover;
    background-position: center 75%;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 24, 0.85) 0%, rgba(44, 122, 134, 0.4) 100%);
    z-index: 1;
}

.video-grid {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
}

.hero-title {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl));
    color: var(--text-light);
    opacity: 0.95;
    margin-bottom: var(--space-xl);
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.subtitle-part {
    position: relative;
    padding: 0 var(--space-sm);
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.subtitle-part:nth-child(1) {
    animation-delay: 0.5s;
}

.subtitle-part:nth-child(2) {
    animation-delay: 1s;
}

.subtitle-part:nth-child(3) {
    animation-delay: 1.5s;
}

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

.subtitle-part:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: calc(var(--space-sm) * -1);
    color: var(--secondary-color);
    opacity: 0.6;
}

/* CTA Button - Premium Style */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-base);
    letter-spacing: 0.01em;
    transition: all var(--transition-base);
    box-shadow: 0 4px 14px 0 rgba(44, 122, 134, 0.39);
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px 0 rgba(44, 122, 134, 0.5);
}

.button-arrow {
    transition: transform var(--transition-base);
}

.cta-button:hover .button-arrow {
    transform: translateX(4px);
}

/* Scroll Indicator - Refined */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    color: var(--text-light);
    opacity: 0.8;
    transition: all var(--transition-base);
    z-index: 10;
}

.scroll-text {
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

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

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

/* Section Headers - Clean */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-muted);
    max-width: 600px;
    margin: var(--space-md) auto 0;
    line-height: 1.6;
}

/* About Section - Elevated */
.about {
    padding: var(--space-3xl) 0;
    background: var(--gray-50);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-content {
    padding-right: var(--space-xl);
}

.lead-text {
    font-size: var(--text-xl);
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

.highlight-years {
    color: var(--primary-color);
    font-weight: 700;
}

.about-content p {
    margin-bottom: var(--space-md);
    color: var(--text-body);
    line-height: 1.7;
    font-size: var(--text-lg);
    font-weight: 400;
}

.about-content p:last-of-type {
    font-weight: 600;
    color: var(--text-dark);
    font-style: italic;
    margin-top: var(--space-md);
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 22, 24, 0.95), transparent);
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    color: var(--text-light);
}

.image-caption h3 {
    color: var(--text-light);
    font-size: var(--text-xl);
    margin-bottom: var(--space-xs);
}

.image-caption p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
    line-height: 1.5;
}

/* Services Section - Premium Cards */
.services {
    padding: var(--space-3xl) 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: var(--light-bg);
    padding: var(--space-2xl);
    border-radius: 16px;
    transition: all var(--transition-slow);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    font-size: var(--text-xl);
}

.service-card p {
    color: var(--text-body);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    flex-grow: 1;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all var(--transition-base);
    letter-spacing: 0.01em;
}

.service-link:hover {
    gap: var(--space-sm);
    color: var(--primary-hover);
}

/* Map Section - Clean */
.clients {
    padding: var(--space-3xl) 0;
    background: var(--gray-50);
}

.map-container {
    margin: var(--space-xl) 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

#venues-map {
    width: 100%;
    height: 450px;
    background: var(--gray-100);
}

/* Venues List - Organized */
.venues-list {
    margin-top: var(--space-xl);
    padding: var(--space-2xl);
    background: var(--light-bg);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.venue-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.venue-column li {
    padding: 0.625rem 0;
    color: var(--text-body);
    font-size: var(--text-sm);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    line-height: 1.4;
}

.venue-column li:hover {
    color: var(--primary-color);
    padding-left: var(--space-xs);
}

.venue-column li:last-child {
    border-bottom: none;
}

/* CTA Section - Bold */
.cta-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-lighter) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--text-light);
    margin-bottom: var(--space-xs);
    font-size: var(--text-2xl);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-base);
    margin-bottom: var(--space-lg);
}

.cta-button.primary {
    background: var(--primary-color);
    font-size: var(--text-base);
    padding: 1rem 2rem;
}

.cta-button.primary:hover {
    background: var(--primary-hover);
}

/* Footer - Professional */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    text-align: center;
}

.footer-main {
    margin-bottom: var(--space-lg);
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: var(--space-xs);
    opacity: 0.95;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.02em;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--text-light);
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--text-xs);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Service Pages - Hero */
.service-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 109px;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 24, 0.9) 0%, rgba(44, 122, 134, 0.5) 100%);
    z-index: 1;
}

.service-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.service-hero h1 {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.service-hero .hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 500;
}

.hero-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Service Intro */
.service-intro {
    padding: var(--space-2xl) 0;
    background: var(--light-bg);
}

.service-intro .intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text-body);
    text-align: center;
}

/* Service Offerings */
.service-offerings {
    padding: var(--space-xl) 0 var(--space-3xl);
    background: var(--light-bg);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
    margin-bottom: var(--space-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.offering-column h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    font-size: var(--text-xl);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary-color);
}

.service-features,
.service-applications {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li,
.service-applications li {
    position: relative;
    padding: 0.75rem 0 0.75rem var(--space-lg);
    color: var(--text-body);
    line-height: 1.5;
    transition: all var(--transition-base);
    border-bottom: 1px solid var(--gray-200);
}

.service-features li:last-child,
.service-applications li:last-child {
    border-bottom: none;
}

.service-features li::before,
.service-applications li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.service-features li:hover,
.service-applications li:hover {
    color: var(--text-dark);
    padding-left: calc(var(--space-lg) + 4px);
}

.cta-center {
    text-align: center;
    margin-top: var(--space-2xl);
    padding: var(--space-xl) 0;
}

.cta-center .cta-button {
    font-size: var(--text-lg);
    padding: 1.125rem 2.5rem;
    background: var(--primary-color);
    box-shadow: 0 6px 20px 0 rgba(44, 122, 134, 0.4);
    border: 2px solid transparent;
    transition: all var(--transition-slow);
}

.cta-center .cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px 0 rgba(44, 122, 134, 0.5);
    border-color: var(--secondary-color);
}

/* Trusted Partners */
.trusted-partners {
    padding: var(--space-3xl) 0;
    background: var(--light-bg);
}

.partners-list {
    margin-top: var(--space-xl);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.partners-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md) var(--space-xl);
}

.partners-list li {
    font-size: var(--text-lg);
    color: var(--text-muted);
    font-weight: 500;
    transition: all var(--transition-base);
    position: relative;
}

.partners-list li:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .partners-list ul {
        gap: var(--space-sm) var(--space-lg);
    }

    .partners-list li {
        font-size: var(--text-base);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: var(--space-md);
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-content {
        padding-right: 0;
        text-align: center;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .navbar .container {
        padding: 0;
    }

    .nav-content {
        height: 60px;
        padding: 0 var(--space-sm);
    }

    .logo {
        margin-left: -20px;
    }

    .logo-img {
        height: 100px;
        margin-top: 4px;
    }
    
    .nav-links {
        display: none;
    }

    .contact-button {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero Mobile */
    .hero {
        margin-top: 60px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-lg);
    }
    
    .subtitle-part:not(:last-child)::after {
        display: none;
    }
    
    /* Sections Mobile */
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .venues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .service-hero {
        margin-top: 60px;
        min-height: 50vh;
    }
}

@media (max-width: 480px) {
    .venues-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-list ul {
        gap: var(--space-md) var(--space-lg);
    }
    
    .partners-list li {
        font-size: var(--text-base);
    }
}

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

/* Selection Style */
::selection {
    background: var(--primary-color);
    color: var(--text-light);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Focus Styles */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-lighter) 100%);
    padding: var(--space-2xl) 0;
    margin-top: 109px;
    text-align: center;
}

.contact-hero h1 {
    color: var(--text-light);
    margin-bottom: var(--space-xs);
}

.contact-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-lg);
    font-weight: 400;
}

.contact-section {
    padding: var(--space-3xl) 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section h2,
.contact-form-section h2 {
    margin-bottom: var(--space-md);
    color: var(--text-dark);
    font-size: var(--text-2xl);
}

.contact-details {
    margin: var(--space-xl) 0;
}

.contact-item {
    margin-bottom: var(--space-lg);
}

.contact-item h3 {
    color: var(--primary-color);
    font-size: var(--text-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: var(--text-lg);
    font-weight: 500;
    transition: color var(--transition-base);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-body);
    font-size: var(--text-lg);
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-image {
    margin-top: var(--space-xl);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Form Styles */
.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.375rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: var(--text-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: var(--text-base);
    font-family: inherit;
    transition: all var(--transition-base);
    background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 122, 134, 0.1);
    background: var(--light-bg);
}

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

.contact-form-section .cta-button {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: var(--text-base);
    margin-top: var(--space-sm);
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-hero {
        margin-top: 60px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .contact-image {
        display: none;
    }
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-lighter) 100%);
    padding: var(--space-2xl) 0;
    margin-top: 109px;
    text-align: center;
}

.blog-hero h1 {
    color: var(--text-light);
    margin-bottom: var(--space-xs);
}

.blog-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-lg);
    font-weight: 400;
}

.blog-content {
    padding: var(--space-3xl) 0;
    background: var(--light-bg);
}

.blog-post {
    max-width: 720px;
    margin: 0 auto;
}

.blog-post-header {
    margin-bottom: var(--space-xl);
    text-align: center;
}

.blog-date {
    display: inline-block;
    color: var(--primary-color);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.blog-post-header h2 {
    color: var(--text-dark);
    font-size: var(--text-3xl);
    line-height: 1.3;
}

.blog-featured-image {
    margin-bottom: var(--space-2xl);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-content {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--text-body);
}

.blog-post-content p {
    margin-bottom: var(--space-md);
}

.blog-post-content p.lead {
    font-size: var(--text-lg);
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: var(--space-xl);
    border-left: 3px solid var(--primary-color);
    padding-left: var(--space-md);
}

.blog-post-content h3 {
    color: var(--text-dark);
    font-size: var(--text-xl);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.blog-post-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .blog-hero {
        margin-top: 60px;
        padding: var(--space-xl) 0;
    }

    .blog-post-header h2 {
        font-size: var(--text-2xl);
    }

    .blog-post-content {
        font-size: var(--text-base);
    }

    .blog-post-content p.lead {
        font-size: var(--text-base);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }