:root {
    --primary: #1a3e8c;      /* Darker blue from 1-VoIP */
    --primary-dark: #112a5e;
    --secondary: #3465d8;    /* Bright blue */
    --accent: #f7941d;       /* Orange from 1-VoIP */
    --light: #f8f9fa;        /* Light gray background */
    --text-dark: #333333;
    --text-light: #777777;
}

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

html, body {
    height: 100%;
}

body {
    line-height: 1.6;
    color: #334155;
    background: var(--light);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

header {
    background: linear-gradient(145deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

header::after {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 15%);
    opacity: 0.1;
    pointer-events: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 1rem 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    min-height: 80px; /* Add minimum height */
}

h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -0.03em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Logo Styles */
.logo {
    max-height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
}

header h1 {
    padding: 0;
    margin: 0;
}

header h1::after {
    display: none;
}

.logo:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .logo {
        max-height: 50px;
    }
}

h1 {
    margin: 0;
}
h2 { font-size: 2rem; margin-bottom: 1.5rem; }

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

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        width: 100%;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--primary);
        padding: 1rem;
    }
    
    nav ul.active {
        display: flex;
    }
}


/* Services Grid */
.services-preview {
    padding: 4rem 2rem;
    background: var(--light);
}

.services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

.services-preview .service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    color: var(--primary-dark);
    position: relative;
    min-height: auto;
    z-index: auto;
}

.services-preview .service-card::before {
    content: none;
}

.services-preview .service-card:hover {
    transform: translateY(-5px);
}

.services-preview .service-card a {
    display: inline-block;
    margin-top: 1.5rem;
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: var(--accent);
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.services-preview .service-card a:hover {
    background: var(--secondary);
    color: white;
}

.services-preview .service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Performance Metrics */
.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background: var(--primary-dark);
}

.metric-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--deco-green);
    margin-bottom: 1rem;
    opacity: 1 !important;
    transform: none !important;
}

/* Support Status Styles */
.support-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    opacity: 1 !important;
    transform: none !important;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
}

.status-text {
    font-size: 1.5rem;
    font-weight: 600;
}

.status-dot.available {
    background: var(--deco-green);
    box-shadow: 0 0 8px rgba(106, 153, 78, 0.3);
}

.status-dot.offline {
    background: #dc2626;
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.3);
}

/* Support status is now dynamic */

.metric-label {
    color: var(--deco-teal);
    font-size: 1.1rem;
}

/* Coverage Map */
.coverage-map {
    padding: 4rem 2rem;
    background: var(--light);
}

/* Improved map styling */
#serviceCoverageMap {
    border: 2px solid var(--deco-teal);
    height: 600px;
    width: 100%;
    min-height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 2rem 0;
    background: #f8f9fa;
}

.map-popup {
    font-family: 'Inter', sans-serif;
    min-width: 200px;
}

.map-popup h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.coverage-stats div {
    padding: 0.3rem 0;
    border-top: 1px solid #eee;
}

.network-node {
    position: relative;
    width: 20px;
    height: 20px;
}

.node-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.7;
}

.cluster-marker {
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cluster-marker div {
    transform: translateY(-1px);
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 0.4; }
    100% { transform: scale(0.8); opacity: 0.7; }
}

.map-legend {
    background: rgba(255,255,255,0.9);
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.map-legend h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.map-legend div {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.leaflet-container {
    background: rgba(255,255,255,0.9) !important;
}

.leaflet-popup-content {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.map-legend {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.swatch {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 0.5rem;
}

.voip { background: var(--accent); }
.sip { background: var(--secondary); }

/* Chart Container */
.chart-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Network Visualization */
.network-visualization {
    padding: 4rem 2rem;
    background: var(--primary-dark);
    text-align: center;
    color: white;
}

.network-visualization h3 {
    color: var(--accent);
    margin-bottom: 2rem;
}

#networkNodes {
    height: 500px;
    width: 100%;
    margin: 2rem auto;
    position: relative;
    background: var(--primary-dark);
    border-radius: 8px;
    overflow: hidden;
}

/* Network Visualization Labels */
.network-visualization .node-label {
    position: absolute;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    pointer-events: none;
    background: rgba(0,0,0,0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transform: translate(-50%, -50%);
    z-index: 10;
    backdrop-filter: blur(2px);
}

/* Position labels using data attributes */
.network-visualization [data-node="dallas"] { left: 70%; top: 45% }
.network-visualization [data-node="richmond"] { left: 30%; top: 35% }
.network-visualization [data-node="manila"] { left: 55%; top: 65% }

/* Contact CTA Section */
.contact-cta {
    padding: 4rem 2rem;
    background: var(--primary-dark);
    color: white;
    text-align: center;
}

.contact-cta a {
    color: var(--accent) !important;
    text-decoration: none;
}

.contact-cta a:hover {
    color: var(--secondary) !important;
    text-decoration: underline;
}

.contact-cta h2 a {
    color: white;
    text-decoration: none;
}

.contact-cta h2 a:hover {
    text-decoration: underline;
}

.contact-cta address {
    font-style: normal;
    margin: 1rem 0;
    line-height: 1.6;
}

.contact-cta .business-hours {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.contact-cta .hours-row {
    display: flex;
    justify-content: space-between;
    max-width: 300px;
    margin: 0 auto;
}

.contact-cta .contact-info-section {
    background: transparent;
    padding: 0;
    margin: 2rem auto 0;
    max-width: 600px;
}

/* About Section */
.about-section {
    background: var(--primary-dark);
    color: var(--light);
    padding: 4rem 2rem;
}

.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.subheading {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.about-column {
    padding: 1rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.cta-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cta-outline:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .about-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-header h2 {
        font-size: 2rem;
    }
    
    .subheading {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 1rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
}

footer {
    position: sticky;
    top: 100vh;
    padding: 1rem 0;
}

.hero-banner {
    background-color: var(--primary);
    color: white;
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 300px;
    max-width: 400px;
}

.hero-banner .service-card {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-banner .service-card:hover {
    transform: translateX(5px);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-banner .service-card h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.hero-banner .service-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.intro-section {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.feature-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-column {
    background: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-column h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card, .service-tier {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover, .service-tier:hover {
    transform: translateY(-5px);
}

.content-grid, .features, .services {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

button, .cta-button {
    background: linear-gradient(135deg, var(--accent) 0%, var(--deco-green) 100%);
    color: white;
    border-radius: 30px;
    padding: 1rem 2.5rem;
    border: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

button:hover, .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(236, 178, 46, 0.2);
}

/* Hero CTA Button */
.hero-content .cta-button {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-content .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 148, 29, 0.3);
    background: #ff9f1c;
}

.services {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 4rem 2rem;
}

.service-tier {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-tier h3 {
    color: var(--primary);
    margin: 1rem 0;
    font-size: 1.5rem;
}

.service-tier ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-tier li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-tier li::before {
    content: "✓";
    color: var(--deco-green);
    font-weight: bold;
}

main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 100px; /* Add padding equal to header height */
    min-height: calc(100vh - 100px); /* Keep footer at bottom */
}

main form > div {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input {
    padding: 0.75rem;
    border: 2px solid var(--deco-teal);
    border-radius: 4px;
    width: 100%;
    max-width: 400px;
    transition: border-color 0.3s ease;
}

input:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(236, 178, 46, 0.1);
}

.error {
    color: #dc2626;
    font-size: 0.875rem;
}

span.error {
    display: block;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
        min-height: 60px;
        padding: 0.5rem 1rem;
    }
    
    nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }

    main {
        padding-top: 80px;
        min-height: calc(100vh - 80px);
    }
    
    .logo {
        max-height: 40px !important;
    }
}

/* Services Section */

.services-section {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
    grid-auto-rows: 1fr;
    align-items: stretch;
    gap: 2rem;
    grid-template-areas:
        "header header"
        "top-right bottom-left"
        "bottom-right bottom-right";
    min-height: 100vh;
}

.service-header {
    grid-area: header;
    max-width: 600px;
    padding-right: 2rem;
}

.service-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.subheading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--deco-teal);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-actions {
    margin-top: auto;
    padding-top: 2rem;
}

/* Individual Card Positioning & Backgrounds */
.top-right {
    grid-area: top-right;
    background-image: url('/static/images/voip-service-bg.jpg');
}

.bottom-left {
    grid-area: bottom-left;
    background-image: url('/static/images/sip-trunking-bg.jpg');
}

.bottom-right {
    grid-area: bottom-right;
    background-image: url('/static/images/wholesale-bg.jpg');
}

/* Button Adjustments */
.service-card .cta-button {
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: 4px;
    padding: 1rem 2rem;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 178, 46, 0.3);
}

@media (max-width: 1024px) {
    .services-section {
        grid-template-columns: 1fr;
        grid-template-areas:
            "header"
            "top-right"
            "bottom-left"
            "bottom-right";
        min-height: auto;
    }
    
    .service-header {
        padding-right: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-card {
        min-height: 300px;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
}

/* Service Detail Pages */
.service-detail-section {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, var(--primary-dark) 30%, var(--light) 30%);
}

.service-hero {
    text-align: center;
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.service-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-subhead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-top: 2rem;
}

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

.feature-list {
    columns: 2;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li::before {
    content: "▹";
    color: var(--accent);
    font-weight: bold;
}

.implementation-details {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--light);
    border-radius: 8px;
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 1.5rem;
}

.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--primary);
    border-radius: 8px;
    color: white;
}

.service-cta .cta-button {
    background: var(--accent);
    color: var(--primary-dark);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .feature-list {
        columns: 1;
    }
    
    .service-hero h2 {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
}

/* Admin Styles */
.admin-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.data-table th {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
}

.data-table tr:hover td {
    background-color: #f8f9fa;
}

.truncate {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-danger:hover {
    background-color: #c82333;
}

/* Contact Info Styles */
.contact-info-section {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light);
    border-radius: 8px;
}

.contact-detail h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.address-link {
    color: rgba(255,255,255,0.9) !important;
    text-decoration: none;
    line-height: 1.6;
    transition: opacity 0.3s ease;
    display: inline-block;
    margin: 1rem 0;
}

.address-link:hover {
    opacity: 0.8;
    color: rgba(255,255,255,0.9) !important;
    text-decoration: none;
}

.business-hours {
    display: grid;
    gap: 0.75rem;
}

.hours-row {
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
}

.hours-sep {
    flex: 1;
    border-bottom: 1px dotted rgba(255,255,255,0.3);
    margin: 0 0.5rem;
    position: relative;
    top: -3px;
}

.contact-email a {
    color: var(--secondary);
    font-weight: 500;
    text-decoration: none;
}

.contact-email a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 480px) {
    .contact-info-section {
        padding: 1.5rem;
    }
    
    .hours-row {
        font-size: 0.9rem;
    }
}
