:root {
    --color-grey: #333333;
    --color-blue: #16C8E6;
    --color-purple: #7C2BAE;
    --color-bg: #F8FBFE;
    --color-surface: #FFFFFF;
    --color-text-body: #4A5568;
    --color-text-heading: #1A202C;
    --color-border: #E2E8F0;
    
    --font-primary: 'Outfit', sans-serif;
    
    --transition-speed: 0.3s;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text-body);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--color-blue);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--color-purple);
}

h1, h2, h3 {
    color: var(--color-text-heading);
    font-weight: 600;
    line-height: 1.2;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero Logo */
.hero-logo {
    max-width: 100%;
    width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 24px;
}

/* Main Content area */
.main-content {
    flex: 1;
    padding-bottom: 64px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 80px 24px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-purple));
    border-radius: 2px;
}

/* Removed .company-name */

.company-tagline {
    font-size: 1.25rem;
    color: var(--color-text-body);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Services */
.services {
    padding: 64px 24px;
}

.services h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-purple));
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 500;
}

/* Info Section */
.info-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: flex-start;
    padding: 64px 24px;
    background: var(--color-surface);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
}

.info-section h2 {
    font-size: 1.75rem;
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 12px;
}

.info-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-purple));
    border-radius: 2px;
}

/* Contact List */
.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.125rem;
}

.icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(22, 200, 230, 0.2));
}

/* Locations */
.location-card + .location-card {
    margin-top: 32px;
}

.location-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.location-card .icon {
    margin-top: 4px;
}

.location-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--color-blue);
}

.location-card p {
    font-size: 1rem;
    color: var(--color-text-body);
}

/* Footer */
.footer {
    padding: 32px 0;
    text-align: center;
    margin-top: auto;
}

.footer-link {
    color: #9A8B6F;
    font-weight: 700;
}

.footer-link:hover {
    color: #BEB3A0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-logo {
        width: 200px;
    }
    
    .info-section {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 40px 24px;
    }

    .hero {
        padding: 48px 24px;
    }

    .services {
        padding: 40px 24px;
    }
}
