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

/* BASE */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', Arial, sans-serif;
    color: #1f2937;
    background-color: #ffffff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* HEADER */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 8px 16px;
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #2563eb;
    background-color: #eff6ff;
}

.main-nav a:active {
    color: #1d4ed8;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 120px 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero p {
    max-width: 700px;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: #f9fafb;
}

.section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 2px;
}

.section p {
    max-width: 800px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.section-subtitle {
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 16px;
}

/* CONTENT WITH IMAGES */
.intro-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content {
    flex: 1;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.image-side {
    flex: 1;
}

.image-side img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.text-side {
    flex: 1.2;
}

/* MEDIA / IMAGES */
.media {
    background-color: #ffffff;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.media-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    aspect-ratio: 16 / 10;
    border: 1px solid #e5e7eb;
}

.media-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #2563eb;
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #f3f4f6;
}

.media-item:hover img {
    transform: scale(1.05);
}

.media-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.media-item:hover::after {
    opacity: 1;
}

/* FOOTER */
.site-footer {
    background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
    color: #ffffff;
    margin-top: 100px;
    border-top: 1px solid #1f2937;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    padding: 64px 0 40px;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-grid strong {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.site-footer p {
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.7;
}

.footer-grid a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-grid a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #374151;
    text-align: center;
    padding: 24px;
    font-size: 14px;
    color: #9ca3af;
    background-color: rgba(15, 23, 42, 0.5);
}

/* CONTACT INFO */
.contact-info {
    margin-top: 40px;
}

.contact-info p {
    margin-bottom: 16px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.contact-info strong {
    display: inline-block;
    min-width: 120px;
    color: #111827;
}

.address-block {
    margin-top: 24px;
}

.address-block p:first-child {
    margin-bottom: 8px;
}

/* VALUES / LIST ITEMS */
.core-values {
    margin-top: 24px;
}

.core-values p {
    margin-bottom: 16px;
}

.core-values p:last-child {
    margin-bottom: 0;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #ffffff;
    color: #2563eb;
}

.btn-primary:hover {
    background-color: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* BENEFITS / FEATURES GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.benefit-item {
    padding: 36px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.benefit-item:hover::before {
    transform: scaleY(1);
}

.benefit-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #2563eb;
    transform: translateY(-4px);
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.benefit-item p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.service-item {
    padding: 36px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon img {
    transform: scale(1.05);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #2563eb;
    transform: translateY(-4px);
}

.service-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.service-item > p:first-of-type {
    color: #2563eb;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 16px;
}

.service-description {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
    margin-top: 0;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
        gap: 16px;
    }

    .logo img {
        height: 50px;
    }

    .main-nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 4px;
    }

    .main-nav a {
        margin: 0;
        padding: 8px 12px;
        font-size: 14px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section {
        padding: 50px 0;
    }

    .section h2 {
        font-size: 28px;
    }

    .section h2::after {
        width: 50px;
        height: 2px;
        bottom: -6px;
    }

    .intro-with-image,
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-side,
    .intro-image {
        order: -1;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .benefit-item,
    .service-item {
        padding: 24px;
    }

    .service-item h3 {
        font-size: 20px;
    }

    .service-icon {
        height: 180px;
        margin-bottom: 20px;
    }

    .media-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0 32px;
    }

    .footer-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .section h2 {
        font-size: 24px;
    }

    .section h2::after {
        width: 40px;
    }
}
  