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

html {
    scroll-behavior: smooth;
}

#logo-real{
    height: 65px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #0f172a;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #06b6d4;
}

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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #1e293b;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: #06b6d4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.logo:hover .logo-icon {
    background-color: #0891b2;
}

.logo-icon svg {
    stroke: #0f172a;
}

.logo-text {
    display: none;
}

@media (min-width: 640px) {
    .logo-text {
        display: block;
    }
}

.logo-title {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.2;
}

.logo-subtitle {
    color: #06b6d4;
    font-size: 0.75rem;
    line-height: 1.2;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: #cbd5e1;
    transition: all 0.2s;
}

.nav-link:hover {
    color: white;
    background-color: #1e293b;
}

.nav-link.active {
    background-color: #06b6d4;
    color: #0f172a;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: #1e293b;
    border-top: 1px solid #334155;
    padding: 1rem;
    gap: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 10rem;
        padding-bottom: 8rem;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0f172a 0%, rgba(15, 23, 42, 0.5) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    max-width: 768px;
}

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

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-tagline {
    font-size: 1.25rem;
    color: #06b6d4;
    margin-bottom: 1rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .hero-tagline {
        font-size: 1.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

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

.btn svg {
    transition: transform 0.2s;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background-color: #06b6d4;
    color: #0f172a;
}

.btn-primary:hover {
    background-color: #0891b2;
}

.btn-outline {
    border: 1px solid #06b6d4;
    color: #06b6d4;
    background: transparent;
}

.btn-outline:hover {
    background-color: rgba(6, 182, 212, 0.1);
}

.btn-dark {
    background-color: #0f172a;
    color: white;
}

.btn-dark:hover {
    background-color: #1e293b;
}

.btn-block {
    width: 100%;
}

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

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

.section-dark {
    background-color: #1e293b;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 48rem;
    margin: 0 auto;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Feature Cards */
.feature-card {
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    transform: translateY(-2px);
}

.feature-icon {
    color: #06b6d4;
    margin-bottom: 1rem;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #94a3b8;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(to right, #06b6d4, #0891b2);
}

@media (min-width: 768px) {
    .cta-section {
        padding: 5rem 0;
    }
}

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

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

@media (min-width: 768px) {
    .page-header {
        padding: 10rem 0 6rem;
    }
}

.page-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3rem;
    }
}

.page-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

/* Mission & Vision Cards */
.mission-vision-card {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.mission-vision-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
}

.mv-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(6, 182, 212, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mv-icon svg {
    stroke: #06b6d4;
}

.mv-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.mv-text {
    color: #cbd5e1;
    line-height: 1.75;
}

/* Value Cards */
.value-card {
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    transform: scale(1.05);
}

.value-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(6, 182, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon svg {
    stroke: #06b6d4;
}

.value-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.value-description {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Team CTA */
.team-cta {
    background: linear-gradient(to right, #06b6d4, #0891b2);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .team-cta {
        padding: 3rem;
    }
}

.team-icon {
    stroke: #0f172a;
    margin: 0 auto 1.5rem;
}

.team-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .team-title {
        font-size: 2.25rem;
    }
}

.team-description {
    font-size: 1.125rem;
    color: #164e63;
    max-width: 48rem;
    margin: 0 auto;
}

/* Service Items */
.service-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .service-item {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-item-reverse .service-content {
    order: 1;
}

.service-item-reverse .service-image {
    order: 2;
}

@media (min-width: 1024px) {
    .service-item-reverse .service-content {
        order: 2;
    }
    
    .service-item-reverse .service-image {
        order: 1;
    }
}

.service-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
}

.service-content {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.service-content:hover {
    border-color: rgba(6, 182, 212, 0.5);
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(6, 182, 212, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    stroke: #06b6d4;
}

.service-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.service-description {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #94a3b8;
}

.bullet {
    width: 8px;
    height: 8px;
    background-color: #06b6d4;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-info-text {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.contact-info-items {
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(6, 182, 212, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    stroke: #06b6d4;
}

.contact-info-label {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.contact-info-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-link:hover {
    color: #06b6d4;
}

.contact-info-text-item {
    color: #94a3b8;
}

.business-hours {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 1.5rem;
}

.business-hours-title {
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.business-hours-list {
    font-size: 0.875rem;
}

.business-hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.business-hours-day {
    color: #94a3b8;
}

.business-hours-time {
    color: white;
}

/* Contact Form */
.contact-form-container {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 2rem;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-form {
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    color: white;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #06b6d4;
}

.form-textarea {
    resize: none;
    font-family: inherit;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.form-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    color: #22c55e;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Footer */
.footer {
    background-color: #0f172a;
    border-top: 1px solid #1e293b;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-text {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #06b6d4;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-contact svg {
    stroke: #06b6d4;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #06b6d4;
}

.footer-contact span {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.875rem;
}
