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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Material Icons Base */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 48px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #345B6D 0%, #4A6B7D 50%, #5A7B8D 100%);
    height: 4px;
    width: 100%;
}

/* Header */
.header {
    background: #FFFFFF;
    color: #2c3e50;
    padding: 1.5rem 0;
    box-shadow: 0 2px 12px rgba(52, 91, 109, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(52, 91, 109, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    position: relative;
    overflow: hidden;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    position: relative;
}

.logo-img {
    max-height: 144px;
    width: auto;
    height: auto;
    transition: opacity 0.3s;
    display: block;
    position: relative;
}

.logo-img:hover {
    opacity: 0.8;
}


.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    color: #5A7FA8;
}

.tagline {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Navigation */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover {
    color: #6B7F9A;
}

.nav-menu a.active {
    color: #6B7F9A;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #9EADC2 0%, #B8C8D8 50%, #D0DCE8 100%);
}

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

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    list-style: none;
    min-width: 200px;
    padding: 0.5rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: #F0F4F8;
    color: #6B7F9A;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E8EDF2 0%, #F0F4F8 25%, #F5F7FA 50%, #FAFBFC 75%, #FFFFFF 100%);
    padding: 4rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg width='1200' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 Q300,0 600,50 T1200,50 L1200,100 L0,100 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

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

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 3rem;
    color: #5A6B7F;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(90, 107, 127, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-portrait {
    width: 300px;
    height: 300px;
}

.portrait-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background-color: #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.portrait-placeholder svg {
    width: 100%;
    height: 100%;
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #9EADC2 0%, #B8C8D8 50%, #D0DCE8 100%);
    color: #2C3E50;
    box-shadow: 0 4px 8px rgba(158, 173, 194, 0.3);
    border: none;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8E9DB2 0%, #A8B8C8 50%, #C0CCD8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(158, 173, 194, 0.4);
    color: #1C2E40;
}

.btn-secondary {
    background: linear-gradient(135deg, #E8EDF2 0%, #F0F4F8 100%) !important;
    color: #5A6B7F !important;
    font-weight: 600 !important;
    border: 1px solid rgba(184, 200, 216, 0.4) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 5px !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #D8E0E8 0%, #E8EDF2 100%) !important;
    color: #4A5B6F !important;
    border-color: rgba(184, 200, 216, 0.6) !important;
}

/* Services Grid */
.services-grid {
    padding: 4rem 0;
    background-color: #ffffff;
}

/* Services Preview Section */
.services-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FAFBFC 0%, #F5F7FA 50%, #FFFFFF 100%);
}

.services-preview-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-preview-header h3 {
    font-size: 2.5rem !important;
    color: #5A6B7F !important;
    margin-bottom: 1rem !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.services-preview-header p {
    font-size: 1.1rem !important;
    color: #666 !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
    text-align: center !important;
    padding: 0 1rem;
}

.services-preview-header a {
    color: #6B7F9A;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(184, 200, 216, 0.5);
    transition: all 0.3s;
}

.services-preview-header a:hover {
    color: #5A6B7F;
    border-bottom-color: #B8C8D8;
}

.services-preview-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 200, 216, 0.2);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 50%, #F5F7FA 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(184, 200, 216, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(158, 173, 194, 0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(158, 173, 194, 0.2);
    border-color: rgba(184, 200, 216, 0.6);
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FA 50%, #E8EDF2 100%);
}

.service-icon {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 1.5rem !important;
    height: 90px !important;
    width: 90px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    background: linear-gradient(135deg, #F5F7FA 0%, #E8EDF2 50%, #DCE4EA 100%) !important;
    border-radius: 50% !important;
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
}

.service-icon .material-symbols-outlined {
    font-size: 48px !important;
    color: #6B7F9A !important;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48 !important;
    transition: all 0.3s;
    display: inline-block !important;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #E8EDF2 0%, #DCE4EA 50%, #D0DCE8 100%) !important;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(158, 173, 194, 0.25);
}

.service-card:hover .service-icon .material-symbols-outlined {
    color: #5A6B7F;
    transform: scale(1.1);
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 48;
}

.service-card h3 {
    color: #5A6B7F;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card h3 a {
    color: #5A6B7F;
    text-decoration: none;
    transition: color 0.3s;
}

.service-card h3 a:hover {
    color: #6B7F9A;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}


/* Sections */
.intro,
.service-area {
    padding: 3rem 0;
    background-color: white;
}

.intro h3,
.service-area h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #5A6B7F;
}

.intro p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #E8EDF2 0%, #F0F4F8 30%, #F5F7FA 60%, #FAFBFC 100%);
    color: #5A6B7F;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(184, 200, 216, 0.25);
}

.page-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Content Section */
.content {
    padding: 3rem 0;
    background-color: white;
}

.content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #5A6B7F;
}

.content h4 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #6B7F9A;
}

.content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #F5F7FA 0%, #FAFBFC 50%, #FFFFFF 100%);
    margin-top: 2rem;
    border-top: 1px solid rgba(184, 200, 216, 0.25);
}

.cta-section h3 {
    margin-bottom: 1.5rem;
    color: #5A6B7F;
}

/* Contact */
.contact {
    padding: 3rem 0;
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: #5A6B7F;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #555;
}

.contact-item a {
    color: #708090;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #6B7F9A;
}

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

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-form h3 {
    color: #5A6B7F;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #5A6B7F;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B8C8D8;
    box-shadow: 0 0 0 3px rgba(184, 200, 216, 0.15);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Portfolio Section */
.portfolio {
    padding: 4rem 0;
    background-color: #ffffff;
}

.portfolio h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #5A6B7F;
    text-align: center;
}

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

.portfolio-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.portfolio-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 1.5rem;
    text-align: center;
}

.portfolio-preview {
    width: 100%;
    height: 200px;
    background-color: #E3F2FD;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.portfolio-item h4 {
    color: #5A6B7F;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.portfolio-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #9EADC2 0%, #B8C8D8 50%, #D0DCE8 100%);
    color: #2C3E50;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid rgba(184, 200, 216, 0.4);
}

.footer p {
    margin-bottom: 0.5rem;
    color: #3C4E60;
}

.footer a {
    color: #4A5B6F;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #2C3E50;
}

.footer a:hover {
    text-decoration: underline;
}

/* Service Area Map */
.service-area-map {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FAFBFC 0%, #F5F7FA 100%);
}

.service-area-map h3 {
    text-align: center;
    font-size: 2rem;
    color: #5A6B7F;
    margin-bottom: 2rem;
    font-weight: 700;
}

.map-container {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-portrait {
        width: 250px;
        height: 250px;
    }

    .contact .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin-top: 1rem;
    }

    .dropdown-menu {
        position: static;
        display: block;
        margin-top: 0.5rem;
        box-shadow: none;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .hero-portrait {
        width: 200px;
        height: 200px;
    }
}
