:root {
    --primary-dark: #082846;
    --primary-light: #4491c3;
    --white: #ffffff;
    --gray-light: #f5f7fa;
    --text-dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 20px 0;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo-img {
    max-height: 80px;
    width: auto;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--primary-light);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
}

.hero-subtitle .highlight {
    color: var(--primary-light);
    font-weight: 600;
}

.hero-contact {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.hero-contact .contact-card {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.hero-contact .role {
    color: var(--text-dark);
}

/* Features */
.features {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.section-title span {
    color: var(--primary-light);
}

.section-title.dark {
    color: var(--primary-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 20px;
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Quote Section */
.quote-section {
    background-color: var(--primary-dark);
    padding: 0 0 60px 0;
}

.quote-box {
    border: 2px solid var(--primary-light);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 3rem;
    color: var(--primary-dark);
    background: var(--primary-dark);
    padding: 0 10px;
}

.quote-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.quote-box span {
    color: var(--primary-light);
}

.quote-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: left;
}

.quote-check i {
    font-size: 2rem;
    color: var(--primary-light);
}

/* Areas */
.areas {
    background-color: var(--white);
    padding: 60px 0;
    text-align: center;
}

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

.area-item {
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.area-item:hover {
    transform: translateY(-5px);
}

.area-item i {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.area-item p {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 50px 0 0 0;
}

.footer-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-bottom: 40px;
}

.mission h3 {
    font-size: 2.5rem;
    line-height: 1.1;
}

.mission span {
    color: var(--primary-light);
}

.company-details {
    text-align: right;
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.8;
}

.company-details p {
    margin-bottom: 5px;
}

.company-details i {
    color: var(--primary-light);
    margin-right: 8px;
    width: 15px;
}

.company-details a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.company-details a:hover {
    color: var(--primary-light);
}

.contact-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.role {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
    text-align: center;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-phone {
    background-color: var(--white);
    color: var(--primary-dark);
}

.btn-phone:hover {
    background-color: #f0f0f0;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #20bd5a;
}

.footer-bottom {
    background-color: var(--primary-light);
    text-align: center;
    padding: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.unicseg-link {
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 400;
}

.unicseg-link a {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
}

.unicseg-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .quote-check { flex-direction: column; text-align: center; }
    .footer-cta { flex-direction: column; text-align: center; }
}
