/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f6feb;
}

.brand-text span {
    font-size: 0.875rem;
    color: #666;
    font-weight: 400;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #1f6feb;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fbff 0%, #e6f0ff 100%);
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.btn.primary {
    background: #1f6feb;
    color: white;
}

.btn.primary:hover {
    background: #0d5bd6;
    transform: translateY(-2px);
}

.btn.ghost {
    background: transparent;
    color: #1f6feb;
    border-color: #1f6feb;
}

.btn.ghost:hover {
    background: #1f6feb;
    color: white;
}

.highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-weight: 500;
}

.highlights li::before {
    content: "✓";
    color: #1f6feb;
    font-weight: bold;
    font-size: 1.1rem;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.skyline {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section.muted {
    background: #f8fbff;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

/* Services */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.card p {
    color: #666;
    line-height: 1.6;
}

/* About */
.about {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.ticks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ticks li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #555;
    font-weight: 500;
}

.ticks li::before {
    content: "✓";
    color: #1f6feb;
    font-weight: bold;
    font-size: 1.1rem;
    background: #e6f0ff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.about-card p {
    color: #666;
    font-weight: 500;
}

/* About Photo */
.about-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #000000;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
}

.photo-caption {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.photo-caption strong {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
}

.photo-caption span {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.2s;
}

.contact-card:hover {
    transform: translateY(-2px);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-card a {
    color: #1f6feb;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
}

.contact-card a:hover {
    text-decoration: underline;
}

.addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.address {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.address h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.address p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-wrap p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-wrap p:last-child {
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.mobile-nav a:hover {
    background: #f8fbff;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-grid {
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-wrap {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: none;
    }

    .mobile-nav.active {
        display: flex;
    }

    .hero {
        padding: 3rem 0;
        min-height: 70vh;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .profile-photo {
        width: 150px;
        height: 150px;
    }

    .section {
        padding: 3rem 0;
    }

    .section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .addresses {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card, .address {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-wrap {
        padding: 0.75rem 0;
    }

    .brand-text strong {
        font-size: 1.125rem;
    }

    .brand-text span {
        font-size: 0.8rem;
    }

    .logo-svg {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding: 2rem 0;
        min-height: 60vh;
    }

    .hero-text h1 {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-group {
        gap: 0.75rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .section {
        padding: 2rem 0;
    }

    .section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .card, .contact-card, .address {
        padding: 1.25rem;
    }

    .card h3 {
        font-size: 1.25rem;
    }

    .contact-card h3 {
        font-size: 1.125rem;
    }

    .address h3 {
        font-size: 1.125rem;
    }

    .profile-photo {
        width: 120px;
        height: 120px;
    }

    .highlights {
        gap: 0.5rem;
    }

    .highlights li {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-text h1 {
        font-size: 1.625rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .card, .contact-card, .address {
        padding: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav a:focus,
.contact-card a:focus {
    outline: 2px solid #1f6feb;
    outline-offset: 2px;
}
