/* Reset and Base Styles */
@font-face {
    font-family: 'Monsterrat';
    src: url('./assets/fonts/monsterrat.woff2') format('woff2'),
         url('./assets/fonts/monsterrat.woff') format('woff');
    font-weight: 400;
    font-style: normal;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Monsterrat", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

/* Header and Navigation */
header {
    background-color: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    width: 175px;
}

.logo-box {
    background-color: #ffffff;
    color: #000000;
    padding: 0.3rem 0.6rem;
    font-weight: 500;
    margin-right: 0;
    border-radius: 4px;
}

.logo-location {
    font-size: 0.7rem;
    margin-left: 0.5rem;
    font-weight: 400;
    color: #ffffff;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

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

.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    padding: 12rem 0 6rem;
    text-align: center;
    background-image: url("/assets/pano.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    background-color: #000000a1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 400;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Sections */
.section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.section-alt {
    background-color: #f8f8f8;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000000;
    font-weight: 400;
}

.content-grid {
    display: grid;
    gap: 3rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 1.5rem;
    color: #444;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #333;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Services Grid (Vertical Boxes) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-box {
    background-color: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.service-box:hover {
    border-color: #000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-box h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.service-box p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-box .feature-list {
    margin-top: 1.5rem;
}

/* About Section */
.about-content {
    max-width: 1100px;
    margin: 0 auto;
}

.about-main {
    margin-bottom: 3rem;
}

.about-text-block {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-highlight {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #000000;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.about-text-block p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-text-block p:last-child {
    margin-bottom: 0;
}

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

.about-feature-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-feature-card h3 {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 400;
}

.about-feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background-color: #000000;
    padding: 3rem;
    border-radius: 8px;
}

.stat-item {
    text-align: center;
    color: #ffffff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 400;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}

.faq-question {
    width: 100%;
    background-color: #ffffff;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f8f8;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f8f8f8;
}

.faq-item .faq-answer {
    max-height: 0px;
    padding: 0rem 2rem;
    overflow: hidden;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-image-side {
    position: relative;
}

.contact-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

/* Fallback if image doesn't load */
.contact-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    z-index: -1;
}

.contact-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    padding: 2rem;
    color: #ffffff;
}

.overlay-text h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.overlay-text p {
    font-size: 1.1rem;
    color: #cccccc;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
}

.contact-intro-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #000000;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-intro-box h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-intro-box p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.contact-method:hover {
    border-color: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-content {
    flex: 1;
}

.method-content h4 {
    font-size: 1.1rem;
    color: #000000;
    font-weight: 400;
}

.method-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.contact-link {
    color: #000000;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #666;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: #000000;
    color: #ffffff;
    padding: 1.3rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-category {
    margin-bottom: 10px;
}

.cta-button-large:hover {
    background-color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button-large:hover .cta-arrow {
    transform: translateX(5px);
}

/* Footer */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

footer a {
    color: #fff;
}

footer .logo {
    justify-content: center;
    margin-bottom: 1rem;
}

footer .logo-box {
    background-color: #ffffff;
    color: #000000;
}

footer .logo-text,
footer .logo-location {
    color: #ffffff;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000000;
        padding: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        max-height: 400px;
    }

    .nav-links li {
        padding: 0;
        border-bottom: 1px solid #333;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1.2rem 1.5rem;
        padding-bottom: 1.2rem;
    }

    .nav-links a::after {
        display: none;
    }

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

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

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

    .section {
        padding: 3rem 0;
    }

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

    .service-box {
        padding: 2rem;
    }

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

    .about-text-block {
        padding: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-image-wrapper {
        min-height: 400px;
    }

    .contact-method {
        padding: 1.2rem;
    }

    .method-icon {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

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

    .logo {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .service-box {
        padding: 1.5rem;
    }

    .service-box h3 {
        font-size: 1.5rem;
    }

    .about-text-block {
        padding: 1.5rem;
    }

    .about-highlight {
        font-size: 1.1rem;
    }

    .about-feature-card {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-image-wrapper {
        min-height: 350px;
    }

    .contact-intro-box {
        padding: 1.5rem;
    }

    .contact-intro-box h3 {
        font-size: 1.5rem;
    }

    .contact-method {
        padding: 1rem;
        gap: 1rem;
    }

    .method-content h4 {
        font-size: 1rem;
    }

    .method-content p {
        font-size: 0.95rem;
    }

    .overlay-text h3 {
        font-size: 1.5rem;
    }

    .overlay-text p {
        font-size: 1rem;
    }

    .cta-button-large {
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 1rem;
    }
}

/* Extra small devices (320px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }

    .hamburger {
        padding: 5px;
    }

    .hamburger-line {
        width: 22px;
        height: 2.5px;
    }

    .hero {
        padding: 3rem 0 2.5rem;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

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

    .logo {
        font-size: 1.1rem;
    }

    .logo-box {
        padding: 0.25rem 0.5rem;
    }

    .nav-links a {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }

    .section {
        padding: 2rem 0;
    }

    .section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-box {
        padding: 1.25rem;
    }

    .service-box h3 {
        font-size: 1.35rem;
    }

    .service-box p {
        font-size: 0.95rem;
    }

    .feature-list li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
        padding-left: 1.8rem;
    }

    .about-text-block {
        padding: 1.25rem;
    }

    .about-highlight {
        font-size: 1rem;
    }

    .about-text-block p {
        font-size: 0.95rem;
    }

    .about-feature-card {
        padding: 1.5rem;
    }

    .about-feature-card h3 {
        font-size: 1.2rem;
    }

    .about-feature-card p {
        font-size: 0.95rem;
    }

    .feature-icon {
        font-size: 2.25rem;
    }

    .about-stats {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .faq-icon {
        font-size: 1.3rem;
    }

    .faq-answer {
        padding: 0.9rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .contact-image-wrapper {
        min-height: 300px;
    }

    .contact-intro-box {
        padding: 1.25rem;
    }

    .contact-intro-box h3 {
        font-size: 1.35rem;
    }

    .contact-intro-box p {
        font-size: 0.95rem;
    }

    .contact-method {
        padding: 0.9rem;
        gap: 0.9rem;
    }

    .method-icon {
        font-size: 1.5rem;
    }

    .method-content h4 {
        font-size: 0.95rem;
    }

    .method-content p {
        font-size: 0.9rem;
    }

    .contact-link {
        font-size: 0.95rem;
        word-break: break-all;
    }

    .overlay-text {
        padding: 1rem;
    }

    .overlay-text h3 {
        font-size: 1.25rem;
    }

    .overlay-text p {
        font-size: 0.95rem;
    }

    .cta-button-large {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .cta-arrow {
        font-size: 1.25rem;
    }

    footer {
        padding: 2rem 0;
    }

    footer p {
        font-size: 0.85rem;
    }
}
