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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background: #FFFFFF;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(to bottom right, #0F766E, #115E59);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-icon svg {
    width: 28px;
    height: 28px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #115E59;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.875rem;
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background: #0F766E;
    color: white;
    box-shadow: 0 4px 6px rgba(15, 118, 110, 0.2);
}

.btn-primary:hover {
    background: #115E59;
    box-shadow: 0 6px 12px rgba(15, 118, 110, 0.3);
    transform: translateY(-1px);
}

.btn-accent {
    background: #D97706;
    color: white;
    box-shadow: 0 6px 12px rgba(217, 119, 6, 0.3);
}

.btn-accent:hover {
    background: #B45309;
    box-shadow: 0 8px 16px rgba(217, 119, 6, 0.4);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-feature {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 118, 110, 0.6), rgba(71, 85, 105, 0.4));
}

.hero-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 42rem;
    z-index: 10;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Sections */
.section {
    padding: 4rem 0;
    background: white;
}

.section-gray {
    background: #F9FAFB;
}

.section-intro {
    margin-bottom: 3rem;
}

.section-bottom {
    margin-top: 3rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #6B7280;
    max-width: 48rem;
    margin: 0 auto 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

/* Service Cards */
.service-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.service-img {
    width: 100%;
    height: 288px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-text {
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.feature-img {
    width: 100%;
    height: 224px;
    object-fit: cover;
}

.feature-content {
    padding: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

/* Image Cards with Overlay */
.image-card-wrapper {
    position: relative;
    margin-top: 3rem;
}

.image-card-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: block;
}

.image-card-box {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    max-width: 28rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-card-bottom-left {
    bottom: 2rem;
    left: 2rem;
}

.image-card-top-left {
    top: 2rem;
    left: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-text {
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #F9FAFB;
    border-top: 1px solid #E5E7EB;
    margin-top: 0;
    padding: 2rem 0;
}

.footer-disclaimer {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #0F766E;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #115E59;
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    font-size: 0.875rem;
    color: #9CA3AF;
}

/* Content Pages Styles */
.content-page {
    max-width: 56rem;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.content-page h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
}

.content-page h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-page h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-page p {
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-page ul, .content-page ol {
    color: #6B7280;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.content-page strong {
    color: #111827;
    font-weight: 600;
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: #F9FAFB;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #0F766E;
    color: white;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.contact-card a {
    color: #0F766E;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: #115E59;
    text-decoration: underline;
}

.contact-card p {
    color: #6B7280;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.info-box {
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.info-box h2 {
    margin-top: 0 !important;
}

.info-box p {
    margin-bottom: 1rem;
}

.info-box ul {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Header */
    .header-content {
        height: 56px;
    }

    .logo-text {
        font-size: 1.125rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .logo-icon svg {
        width: 24px;
        height: 24px;
    }

    .btn-primary {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .image-card-img {
        height: 400px;
    }

    .image-card-box {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }

    .service-img, .feature-img {
        height: 200px;
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-lg {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile header */
    .logo-text {
        font-size: 1rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .logo-icon svg {
        width: 20px;
        height: 20px;
    }

    .btn-primary {
        padding: 0.5rem 0.625rem;
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .image-card-box {
        padding: 1.5rem;
    }

    .service-content, .feature-content {
        padding: 1.5rem;
    }
}

/* New Hero Section Styles */
.hero-new {
    height: 500px;
    background: #1a2847;
}

.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: #1a2847;
    opacity: 0.8;
}

.hero-new .hero-bg {
    opacity: 0.2;
}

.hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    color: white;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-title-large {
    font-size: 3.75rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-orange {
    color: #f97316;
}

.hero-subtitle-large {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-orange {
    background: #f97316;
    color: white;
    box-shadow: 0 6px 12px rgba(249, 115, 22, 0.3);
}

.btn-orange:hover {
    background: #ea580c;
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.btn-lg-xl {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
}

.hero-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.hero-features span:nth-child(even) {
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive adjustments for new hero */
@media (max-width: 768px) {
    .hero-title-large {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-large {
        font-size: 1rem;
    }
    
    .btn-lg-xl {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 0.75rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title-large {
        font-size: 2rem;
    }
    
    .hero-features span:not(:nth-child(even)) {
        display: none;
    }
    
    .hero-features span:first-child,
    .hero-features span:nth-child(5) {
        display: block;
    }
}
