/* Sağ alt köşede sabit sosyal ikonlar */
.floating-social {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}
/* Modern iletişim kutusu stilleri */
.contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    background: linear-gradient(90deg, #eaf6fb 0%, #f7fafd 100%);
    border-radius: 24px;
    box-shadow: 0 2px 16px 0 rgba(34,51,74,0.07);
    padding: 2.2rem 2.5rem;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    width: 100%;
}
.contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    font-size: 1.08rem;
    font-weight: 500;
    color: #22334a;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px 0 rgba(34,51,74,0.04);
    padding: 0.8rem 1.2rem;
    transition: box-shadow 0.2s, transform 0.2s;
    width: 100%;
    max-width: 400px;
}
.contact-row:hover {
    box-shadow: 0 8px 24px 0 rgba(33,118,174,0.10);
    transform: translateY(-2px) scale(1.03);
}
.contact-label {
    font-weight: 700;
    color: #2176ae;
    margin-right: 0.2rem;
}
.contact-value {
    color: #22334a;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1px;
    transition: color 0.2s;
}
.contact-value:hover {
    color: #e1306c;
    text-decoration: underline;
}
.contact-social-block {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-end;
    flex: 1;
    justify-content: flex-start;
}
.contact-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px 0 rgba(34,51,74,0.07);
    width: 48px;
    height: 48px;
    margin-bottom: 0.2rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.contact-social:hover {
    box-shadow: 0 8px 24px 0 rgba(33,118,174,0.10);
    transform: scale(1.08);
}
/* İletişim alanı stilleri */
.contact-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 1.2rem;
}
.contact-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(34,51,74,0.09);
    padding: 1.2rem 1.7rem;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.08rem;
    font-weight: 500;
    color: #22334a;
    transition: box-shadow 0.2s, transform 0.2s;
}
.contact-item:hover {
    box-shadow: 0 8px 32px 0 rgba(33,118,174,0.13);
    transform: translateY(-4px) scale(1.04);
}
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
}
.contact-label {
    font-weight: 700;
    color: #2176ae;
    margin-right: 0.3rem;
}
.contact-value {
    color: #22334a;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1px;
    transition: color 0.2s;
}
.contact-value:hover {
    color: #e1306c;
    text-decoration: underline;
}
@media (max-width: 900px) {
    html, body {
        overflow-x: hidden !important;
    }
}
@media (max-width: 900px) {
    html, body {
        overflow-x: hidden !important;
    }
}
@media (max-width: 900px) {
    .navbar-menu,
    .navbar-actions {
        display: none !important;
    }
    .navbar-logo {
        margin-bottom: 0;
        justify-content: center;
        width: 100%;
    }
}
@media (max-width: 900px) {
    .hero {
        min-height: 56px;
        padding: 0;
    }
    .navbar {
        flex-direction: column;
        align-items: stretch;
        padding: 0.7rem 1rem;
        min-height: unset;
    }
    .navbar-logo {
        justify-content: flex-start;
        margin-bottom: 0.5rem;
    }
    .navbar-logo img {
        height: 36px;
    }
    .navbar-logo span {
        font-size: 1.1rem;
    }
    .navbar-menu {
        flex-direction: column;
        gap: 0.2rem;
        align-items: flex-start;
        justify-content: flex-start;
        margin-bottom: 0.5rem;
    }
    .navbar-menu a {
        font-size: 1rem;
        padding: 0.25rem 0.7rem;
        width: 100%;
        border-radius: 6px;
        text-align: left;
    }
    .navbar-actions {
        justify-content: flex-end;
        margin-bottom: 0.2rem;
    }
    .cta-btn {
        font-size: 0.98rem;
        padding: 0.4rem 1rem;
        border-radius: 18px;
    }
}
/* Banner görseli */

.main-banner img {
    width: 100%;
    height: auto;
    max-width: 100vw;
    display: block;
    object-fit: cover;
    border-radius: 0;
}
/* Hizmetlerimiz grid ve görsel kartlar */
.services-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.2rem;
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.service-card {
    flex: 1 1 0;
    max-width: 340px;
    min-width: 220px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(34,51,74,0.07);
    padding: 2.2rem 1.7rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.service-card h3 {
    color: #2176ae;
    margin-bottom: 0.7rem;
    font-size: 1.25rem;
    font-weight: 700;
}
.service-img-card {
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    aspect-ratio: 21/9;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 2px 16px 0 rgba(34,51,74,0.09);
    background: #fff;
    transition: transform 0.18s, box-shadow 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    transition: transform 0.18s;
}
.service-img-card:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 32px 0 rgba(33,118,174,0.13);
}
.service-img-card:hover img {
    transform: scale(1.06);
}
@media (max-width: 900px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .service-card, .service-img-card {
        max-width: 100%;
        min-width: 0;
    }
}
/* Görsel Galeri */
.gallery-section {
    padding: 2.5rem 0 2.5rem 0;
    background: #f7fafd;
}
.gallery-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* Slider Stilleri */
.slider-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f7fafd;
    border-radius: 32px;
    box-shadow: 0 2px 16px 0 rgba(34,51,74,0.07);
}
.slider-container {
    position: relative;
    width: 100%;
    max-width: 950px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 32px;
    background: #fff;
}
.slider-images {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s;
    border-radius: 32px;
    box-shadow: none;
    margin: 0;
}
.slider-img.active {
    opacity: 1;
    z-index: 2;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    color: #2176ae;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(34,51,74,0.07);
    z-index: 3;
    transition: background 0.2s, transform 0.2s;
}
.slider-btn:hover {
    background: #eaf6fb;
    transform: translateY(-50%) scale(1.08);
}
.slider-btn-prev {
    left: 12px;
}
.slider-btn-next {
    right: 12px;
}
.slider-dots {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
    margin-top: 1.2rem;
}
.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #dbeaf6;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px 0 rgba(34,51,74,0.07);
}
.slider-dot.active {
    background: #2176ae;
    transform: scale(1.15);
}
@media (max-width: 900px) {
    .slider-container {
        max-width: 98vw;
        height: 180px;
    }
    .slider-img {
        width: 98vw;
        height: 100%;
        border-radius: 14px;
        margin: 0;
    }
    .slider-section {
        padding: 1rem 0;
    }
}
    align-items: center;
}
.gallery-img {
    flex: 1 1 0;
    max-width: 320px;
    min-width: 220px;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 rgba(34,51,74,0.09);
    background: #fff;
    transition: transform 0.18s, box-shadow 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.18s;
}
.gallery-img:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 32px 0 rgba(33,118,174,0.13);
}
.gallery-img:hover img {
    transform: scale(1.06);
}
/* CTA Alanı */
.cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #2176ae 0%, #80d0c7 100%);
    color: #fff;
    font-size: 1.08rem;
    font-weight: 700;
    padding: 0.22rem 1.4rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px 0 rgba(33,118,174,0.10);
    text-decoration: none;
    letter-spacing: 0.1px;
    margin-left: 1.7rem;
    transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
    border: none;
    height: auto;
    line-height: 1.6;
    vertical-align: middle;
    min-width: 140px;
    text-align: center;
    white-space: nowrap;
}
.cta-btn:hover, .cta-btn:focus {
    background: linear-gradient(90deg, #1a3a5d 0%, #80d0c7 100%);
    color: #fff;
    box-shadow: 0 6px 16px 0 rgba(33,118,174,0.13);
    transform: translateY(-2px) scale(1.03);
}
.cta-menu {
    font-size: 1.08rem;
    padding: 0.22rem 1.4rem;
    margin-left: 1.7rem;
    vertical-align: middle;
    font-weight: 700;
    border-radius: 6px;
    height: auto;
    line-height: 1.6;
    min-width: 140px;
    text-align: center;
    white-space: nowrap;
}
/* UX Odaklı Eklemeler */
nav ul li a.active {
    background: #2176ae;
    color: #fff !important;
    box-shadow: 0 2px 8px 0 rgba(33,118,174,0.10);
}
.section h2 {
    font-size: 2rem;
    margin-bottom: 1.1rem;
    color: #22334a;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.section p, .service-card p, .references li, .contact-info {
    font-size: 1.08rem;
    color: #3a4a5a;
    line-height: 1.7;
}
.service-card {
    cursor: pointer;
}
.service-card:focus {
    outline: 2px solid #2176ae;
    outline-offset: 2px;
}
button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
button[type="submit"]:after {
    content: '\27A4'; /* Sağ ok ikonu */
    font-size: 1.2rem;
    display: inline-block;
    margin-left: 0.2rem;
}
input, textarea {
    margin-bottom: 0.2rem;
}
input:focus, textarea:focus {
    border-color: #2176ae;
    outline: none;
    background: #f0f7fa;
}
label[for]::after {
    content: ' *';
    color: #e1306c;
    font-size: 1rem;
    vertical-align: top;
}
@media (max-width: 600px) {
    .section h2 {
        font-size: 1.3rem;
    }
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}
.hero {
    background: linear-gradient(90deg, #22334a 0%, #3a5a7c 100%);
    color: #fff;
    padding: 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 16px 0 rgba(34,51,74,0.13);
    min-height: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.navbar {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    min-height: 64px;
    gap: 2rem;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex: 0 0 auto;
}
.navbar-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    flex: 1 1 auto;
    justify-content: center;
}
.navbar-menu a {
    color: #22334a;
    font-weight: 700;
    font-size: 1.09rem;
    text-decoration: none;
    transition: color 0.18s, box-shadow 0.18s;
    padding: 0.35rem 1.1rem;
    border-radius: 8px;
    letter-spacing: 0.04em;
    box-shadow: none;
    background: transparent;
    font-family: 'Inter', 'Roboto', 'Open Sans', Arial, sans-serif;
    display: inline-block;
}
.navbar-menu a:hover {
    color: #225ea8;
    background: #f2f6fa;
    box-shadow: 0 2px 8px 0 rgba(34,51,74,0.08);
}
}
    color: #22334a;
    font-weight: 600;
    font-size: 1.13rem;
    text-decoration: none;
    transition: color 0.18s, text-shadow 0.18s;
    padding: 0.2rem 0.5rem;
    text-shadow: 0 2px 8px rgba(34,51,74,0.18);
    letter-spacing: 0.02em;
}
.navbar-menu a:hover {
    color: #fff;
    text-shadow: 0 4px 16px rgba(34,51,74,0.22);
}
    color: #22334a;
    text-shadow: 0 2px 8px rgba(34,51,74,0.18);
}
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 0 0 auto;
}
/* Ana container ve section'lar için grid/flex düzeni */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.2rem;
    box-sizing: border-box;
}
.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 2.5rem;
}
.cta-btn {
    background: #225ea8;
    color: #fff;
    border-radius: 22px;
    padding: 0.5rem 1.3rem;
    font-weight: 700;
    font-size: 1.08rem;
    border: none;
    box-shadow: 0 4px 16px 0 rgba(34,51,74,0.13);
    transition: background 0.18s, color 0.18s;
    letter-spacing: 0.02em;
}
.cta-btn:hover {
    background: #1a2233;
    color: #7fd1b9;
    box-shadow: 0 6px 24px 0 rgba(34,51,74,0.18);
}
.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1.2px;
    font-weight: 800;
    color: #22334a;
    line-height: 1.1;
}
.hero p {
    font-size: 1.22rem;
    margin-bottom: 2.2rem;
    font-weight: 400;
    color: #4a5a6a;
    opacity: 0.92;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2.1rem;
    max-width: 700px;
}
nav ul li {
    display: block;
    margin: 0;
}
nav ul li a {
    color: #22334a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    letter-spacing: 0.1px;
    padding: 0.22rem 0.7rem;
    border-radius: 6px;
    transition: background 0.18s, color 0.18s;
}
nav ul li a:hover, nav ul li a:focus {
    background: #dde7f2;
    color: #1a3a5d;
}
.section {
    padding: 3rem 0 2rem 0;
}
.section h2 {
    scroll-margin-top: 100px;
}
.bg-light {
    background: #f7fafd;
    border-radius: 24px;
    box-shadow: 0 2px 16px 0 rgba(34,51,74,0.04);
}
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
    justify-content: center;
    margin-top: 2.2rem;
}
.service-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(34,51,74,0.07);
    padding: 2.2rem 1.7rem;
    flex: 1 1 260px;
    max-width: 340px;
    min-width: 220px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(0,147,233,0.10);
}
.service-card h3 {
    color: #2176ae;
    margin-bottom: 0.7rem;
    font-size: 1.25rem;
    font-weight: 700;
}
.references {
    margin-top: 1.5rem;
    padding-left: 1.2rem;
}
.references li {
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
}
form {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 2.2rem 1.7rem;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(34,51,74,0.07);
}
.form-group {
    margin-bottom: 1.2rem;
}
label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #22334a;
}
input, textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #bcdff1;
    border-radius: 7px;
    font-size: 1rem;
    background: #f8fafc;
    resize: none;
    font-family: inherit;
}
button[type="submit"] {
    padding: 0.7rem 2.2rem;
    background: linear-gradient(90deg, #2176ae 0%, #80d0c7 100%);
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(34,51,74,0.07);
}
button[type="submit"]:hover {
    background: linear-gradient(90deg, #1a3a5d 0%, #80d0c7 100%);
}
footer {
    background: #22334a;
    color: #fff;
    text-align: center;
    padding: 2rem 0 1.2rem 0;
    margin-top: 2rem;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}
.contact-info span,
.contact-info a {
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 4px rgba(34,51,74,0.25);
}
.icon-link svg {
    filter: drop-shadow(0 1px 4px rgba(34,51,74,0.25));
}
.contact-icons {
    margin: 1.2rem 0 0.5rem 0;
}
.icon-link {
    display: inline-block;
    margin: 0 0.5rem;
    vertical-align: middle;
    transition: transform 0.2s;
}
.icon-link:hover {
    transform: scale(1.15) translateY(-2px);
    opacity: 0.85;
}
.contact-info {
    margin-top: 0.7rem;
    font-size: 1.08rem;
}
.contact-info a {
    color: #caf0f8;
    text-decoration: underline;
    margin: 0 0.1rem;
    transition: color 0.2s;
}
.contact-info a:hover {
    color: #90e0ef;
}
@media (max-width: 900px) {
    .services {
        flex-direction: column;
        align-items: center;
    }
    .container {
        padding: 0 1rem;
    }
}
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
    .section {
        padding: 2rem 0 1rem 0;
    }
    .service-card {
        padding: 1.2rem 0.7rem;
    }
    form {
        padding: 1.2rem 0.7rem;
    }
    .container {
        padding: 0 0.3rem;
    }
}
body {
    font-family: 'Inter', 'Roboto', 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #eaf6fb;
    color: #222;
    font-size: 1.04rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}
.hero h1 {
    font-family: 'Inter', 'Roboto', 'Open Sans', Arial, sans-serif;
}
.hero p, nav ul li a, .section h2, .section h3, .service-card, .references, label, input, textarea, button, .contact-info, .footer {
    font-family: 'Inter', 'Roboto', 'Open Sans', Arial, sans-serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}




/* Yeni header ve renk stili */

.hero {
    background: linear-gradient(135deg, #e9f1f7 0%, #c7d7e6 100%);
    color: #22334a;
    padding: 4rem 0 2rem 0;
    text-align: center;
}
.hero h1 {
    font-size: 3.3rem;
    margin-bottom: 0.7rem;
    letter-spacing: 1.2px;
    font-weight: 800;
    color: #22334a;
    line-height: 1.08;
    text-shadow: none;
}
.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2176ae;
    letter-spacing: 0.2px;
}
.hero-desc {
    font-size: 1.08rem;
    margin-bottom: 2.1rem;
    font-weight: 400;
    color: #4a5a6a;
    opacity: 0.92;
    letter-spacing: 0.1px;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 1.7rem;
    max-width: 700px;
}
nav ul li {
    display: block;
    margin: 0;
}
nav ul li a {
    color: #22334a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    letter-spacing: 0.1px;
    padding: 0.18rem 0.6rem;
    border-radius: 3px;
    transition: background 0.18s, color 0.18s;
}
nav ul li a:hover, nav ul li a:focus {
    background: #dde7f2;
    color: #1a3a5d;
}

.section {
    padding: 3rem 0 2rem 0;
    scroll-margin-top: 120px;
}
.bg-light {
    background: #f8fafc;
}
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}
.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 2rem 1.5rem;
    flex: 1 1 250px;
    max-width: 320px;
    min-width: 220px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0,119,182,0.13);
}
.service-card h3 {
    color: #0077b6;
    margin-bottom: 0.7rem;
}
.references {
    margin-top: 1.5rem;
    padding-left: 1.2rem;
}
.references li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
form {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.form-group {
    margin-bottom: 1.2rem;
}
label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
}
input, textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #bcdff1;
    border-radius: 5px;
    font-size: 1rem;
    background: #f8fafc;
    resize: none;
}
button[type="submit"] {
    padding: 0.7rem 2rem;
    background: #0077b6;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
button[type="submit"]:hover {
    background: #023e8a;
}
footer {
    background: #023e8a;
    color: #fff;
    text-align: center;
    padding: 2rem 0 1.2rem 0;
    margin-top: 2rem;
}
.contact-icons {
    margin: 1.2rem 0 0.5rem 0;
}
.icon-link {
    display: inline-block;
    margin: 0 0.5rem;
    vertical-align: middle;
    transition: transform 0.2s;
}
.icon-link:hover {
    transform: scale(1.15) translateY(-2px);
    opacity: 0.85;
}
.contact-info {
    margin-top: 0.7rem;
    font-size: 1.08rem;
}
.contact-info a {
    color: #caf0f8;
    text-decoration: underline;
    margin: 0 0.1rem;
    transition: color 0.2s;
}
.contact-info a:hover {
    color: #90e0ef;
}
@media (max-width: 900px) {
    .services {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
    .section {
        padding: 2rem 0 1rem 0;
    }
    .service-card {
        padding: 1.2rem 0.7rem;
    }
    form {
        padding: 1.2rem 0.7rem;
    }
}