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

:root {
    --gray-azure: #708090;
    --dark-azure: #2F4F4F;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 65px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dark-azure);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--dark-azure);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-azure);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 79, 79, 0.85) 0%, rgba(112, 128, 144, 0.75) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Hero Button - Unique Design */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border: 2px solid var(--white);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-hero:hover {
    color: var(--dark-azure);
    border-color: var(--white);
}

.btn-hero:hover::before {
    left: 0;
}

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

.btn-hero i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.btn-hero:hover i {
    transform: translateX(5px);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-azure);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.section-description {
    max-width: 800px;
    margin: 1rem auto 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.detail-item i {
    font-size: 2rem;
    color: var(--dark-azure);
    margin-top: 0.5rem;
}

.detail-item h4 {
    color: var(--dark-azure);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.detail-item p {
    color: var(--text-light);
}

/* Business Section */
.business {
    background: var(--white);
}

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

.business-card {
    background: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.business-card:hover {
    border-color: var(--gray-azure);
    background: var(--white);
}

.service-card .service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(47, 79, 79, 0.92);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.service-card .service-overlay p {
    color: var(--white);
}

.service-card:hover .service-overlay,
.service-card:focus-within .service-overlay {
    opacity: 1;
    transform: translateY(0);
}

.btn-overlay {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-overlay:hover {
    background: var(--white);
    color: var(--dark-azure);
}

.business-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--dark-azure), var(--gray-azure));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-icon i {
    font-size: 2rem;
    color: var(--white);
}

.business-card h3 {
    color: var(--dark-azure);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.business-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Service Detail Sections */
.service-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.service-section.muted {
    background: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-section.muted .service-item {
    background: var(--light-gray);
}

.service-item i {
    font-size: 2rem;
    color: var(--dark-azure);
}

.service-item h3 {
    color: var(--dark-azure);
    font-size: 1.3rem;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.consultation-button-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.btn-consultation {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--dark-azure);
    color: var(--white);
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(47, 79, 79, 0.3);
    cursor: pointer;
    border: none;
}

.btn-consultation:hover {
    background: var(--gray-azure);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 79, 79, 0.4);
}

.btn-consultation i {
    font-size: 1.1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.modal-header h2 {
    color: var(--dark-azure);
    font-size: 1.8rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--dark-azure);
    background: var(--light-gray);
}

.modal-body {
    padding: 2rem;
}

.modal-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    color: var(--dark-azure);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.required {
    color: #e74c3c;
}

.consultation-form input,
.consultation-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--dark-azure);
}

.consultation-form textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.btn-cancel {
    background: var(--light-gray);
    color: var(--text-dark);
    border: 2px solid #e0e0e0;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: #e0e0e0;
    border-color: #d0d0d0;
}

/* Contact Section */
.contact {
    background: var(--light-gray);
    color: var(--text-dark);
}

.contact .section-header h2 {
    color: var(--dark-azure);
}

.contact .section-subtitle {
    color: var(--text-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--dark-azure);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-azure);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--dark-azure);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--gray-azure);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--dark-azure);
}

.contact-item i {
    font-size: 2rem;
    color: var(--dark-azure);
    margin-top: 0.5rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--dark-azure);
}

.contact-item p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.social-media-section {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--dark-azure);
}

.social-media-section h4 {
    color: var(--dark-azure);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--dark-azure);
    border: 2px solid var(--dark-azure);
    box-shadow: 0 2px 8px rgba(47, 79, 79, 0.2);
}

.social-icon-button i {
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    display: inline-block;
}

.social-icon-button.linkedin {
    background: var(--dark-azure);
    border-color: var(--dark-azure);
}

.social-icon-button.linkedin:hover {
    background: var(--gray-azure);
    border-color: var(--gray-azure);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(47, 79, 79, 0.4);
}

.social-icon-button.instagram {
    background: var(--dark-azure);
    border-color: var(--dark-azure);
}

.social-icon-button.instagram:hover {
    background: var(--gray-azure);
    border-color: var(--gray-azure);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(47, 79, 79, 0.4);
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--dark-azure);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gray-azure);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

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

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

    .section-header h2 {
        font-size: 2rem;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

    .about-details {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .social-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .social-icon-button {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .modal-content {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
    }

    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-cancel,
    .btn-submit {
        width: 100%;
    }
}

