/**
 * T1 Elementor Starter Kit
 * Base CSS
 * Version: 0.1.0
 */

:root {
    --t1-primary: #1f4f8f;
    --t1-secondary: #102033;
    --t1-accent: #ffb000;
    --t1-text: #1f2933;
    --t1-muted: #6b7280;
    --t1-bg: #ffffff;
    --t1-section-bg: #f5f7fa;
    --t1-card-bg: #ffffff;
    --t1-border: #e5e7eb;
    --t1-radius: 16px;
    --t1-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.t1-section {
    padding: 80px 0;
}

.t1-section-light {
    background: var(--t1-section-bg);
}

.t1-section-dark {
    background: var(--t1-secondary);
    color: #ffffff;
}

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

.t1-hero {
    padding: 120px 0 96px;
}

.t1-card {
    background: var(--t1-card-bg);
    border: 1px solid var(--t1-border);
    border-radius: var(--t1-radius);
    box-shadow: var(--t1-shadow);
    padding: 28px;
}

.t1-card-service,
.t1-card-feature {
    position: relative;
}

.t1-card-hover {
    transition: transform .2s ease, box-shadow .2s ease;
}

.t1-card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.t1-button-primary,
.t1-button-secondary,
.t1-button-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
}

.t1-button-primary {
    background: var(--t1-primary);
    color: #ffffff;
}

.t1-button-primary:hover {
    filter: brightness(0.92);
}

.t1-button-secondary {
    background: var(--t1-accent);
    color: var(--t1-secondary);
}

.t1-button-outline {
    border: 1px solid var(--t1-primary);
    color: var(--t1-primary);
    background: transparent;
}

.t1-form input,
.t1-form textarea,
.t1-form select {
    border-radius: 12px;
    border: 1px solid var(--t1-border);
    padding: 12px 14px;
}

.t1-image-rounded {
    border-radius: var(--t1-radius);
    overflow: hidden;
}

.t1-grid-2,
.t1-grid-3,
.t1-grid-4 {
    display: grid;
    gap: 24px;
}

.t1-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.t1-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.t1-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
    .t1-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .t1-section {
        padding: 48px 0;
    }

    .t1-hero {
        padding: 72px 0 56px;
    }

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

    .t1-card {
        padding: 22px;
    }
}
