/*!
Theme Name: lara-acts
Theme URI:
Author:
Author URI:
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: lara-acts
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================
   PAGE LOADER
   ============================================ */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 32px;
    height: 32px;
    border: 4px solid rgba(201, 169, 98, 0.2);
    border-top: 4px solid #000000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   GLOBAL STYLES & RESETS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f8f6f2;
    color: #1a1a1a;
    line-height: 1.6;
}


/* ============================================
   TYPOGRAPHY & BASIC ELEMENTS
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}

input,
textarea {
    font-family: inherit;
}

svg {
    display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1524712245354-2c4e5e7121c0?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.hero-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-wrapper {
    max-width: 80rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.hero-nav-brand {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    font-family: Georgia, serif;
    font-weight: 300;
}

.hero-nav-brand span:first-child {
    color: #c9a962;
}

.hero-nav-brand span:last-child {
    color: white;
}

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

.hero-nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-label {
    color: #c9a962;
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    color: white;
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-title .highlight {
    display: block;
    font-style: italic;
    color: #c9a962;
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto 3rem;
    line-height: 1.625;
}

.cta-button {
    background-color: #c9a962;
    color: black;
    padding: 0.925rem 2.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.cta-button:hover {
    background-color: #b8954f;
    box-shadow: 0 20px 25px -5px rgba(201, 169, 98, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator svg {
    width: 1.5rem;
    height: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background-color: #f8f6f2;
    padding: 6rem 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.section-wrapper {
    max-width: 80rem;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.about-content h2 {
    font-size: 1.875rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 2.5rem;
}

.about-label {
    color: #c9a962;
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    line-height: 1.25rem;
}

.about-text {
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.stats-container {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat-item p:first-child {
    font-size: 1.875rem;
    font-weight: 300;
    color: #c9a962;
    line-height: 2.5rem;
}

.stat-item p:last-child {
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.5);
    margin-top: 0.5rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background-color: #1a1a1a;
    padding: 6rem 1.5rem;
}

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

.section-header .label {
    color: #c9a962;
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    line-height: 1.25rem;
}

.section-header h2 {
    color: white;
    font-size: 1.875rem;
    font-weight: 300;
    line-height: 2.25rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.service-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.service-card:hover {
    border-color: rgba(201, 169, 98, 0.5);
    background-color: rgba(255, 255, 255, 0.05);
}

.service-icon, .service-card svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #c9a962;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.75rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    list-style: none;
}

.service-features li {
    font-size: 0.875rem;
    color: rgba(201, 169, 98, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.25rem;
}

.feature-dot {
    width: 0.25rem;
    height: 0.25rem;
    background-color: #c9a962;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonials {
    background-color: #f8f6f2;
    padding: 6rem 1.5rem;
}

.testimonials-content {
    max-width: 64rem;
    margin: 0 auto;
}

.testimonials-content h2 {
    color: #000;
}

.testimonial-quote-icon {
    width: 3rem;
    height: 3rem;
    color: rgba(201, 169, 98, 0.3);
    margin: 0 auto 2rem;
}

.testimonial-container {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-item {
    display: none;
}

.testimonial-item.active {
    display: block;
    animation: fadeUpIn 1s ease-out;
}

.testimonial-text {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(26, 26, 26, 0.8);
    line-height: 1.625;
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-author {
    text-align: center;
}

.testimonial-author-name {
    color: #1a1a1a;
    font-weight: 500;
}

.testimonial-author-title {
    color: #c9a962;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    line-height: 1.25rem;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.nav-button {
    padding: 0.75rem;
    border: 1px solid rgba(26, 26, 26, 0.2);
    background-color: transparent;
    transition: all 0.3s ease;
}

.nav-button:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.nav-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

.dots-container {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50% !important;
    background-color: rgba(26, 26, 26, 0.2) !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #c9a962 !important;
    border-radius: 10px !important;
    width: 2rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background-color: #1a1a1a;
    padding: 6rem 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 80rem;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 1.875rem;
    font-weight: 300;
    color: white;
    margin-bottom: 2rem;
    line-height: 2.25rem;
}

.contact-info h2 .highlight {
    display: block;
    color: #c9a962;
    font-style: italic;
}

.contact-label {
    color: #c9a962;
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    line-height: 1.25rem;
}

.contact-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.625;
    margin-bottom: 3rem;
}

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

.contact-icon {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(201, 169, 98, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #c9a962;
}

.contact-item-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.contact-item-value {
    color: white;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-input,
.form-textarea {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: .875rem 0.75rem;
    border-radius: 0;
    font-size: 1rem;
    line-height: 1.25rem;
    width: 100%;
    transition: border-color 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

.form-textarea {
    resize: none;
    min-height: 150px;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: #c9a962;
    color: black;
    padding: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #b8954f;
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-button svg {
    width: 1rem;
    height: 1rem;
}
form.submitting .submit-button {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    user-select: none;
}
.wpcf7-spinner {
    display: none;
    position: absolute;
}
form.submitting .wpcf7-spinner {
    display: inline-block;
}
.wpcf7 .wpcf7-response-output {
    color: #FFFFFF99;
    margin: 0 !important;
}
/* .wpcf7 .wpcf7-response-output {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: #00a0d2;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    background: #ffb900;
}
.wpcf7 form.sent .wpcf7-response-output {
    background: #46b450;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    background: #dc3232;
}

.wpcf7 form.spam .wpcf7-response-output {
    background: #f56e28;
} */

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: #0f0f0f;
    padding: 3rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-wrapper {
    max-width: 80rem;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.footer-brand {
    text-align: center;
}

.footer-brand p:first-child {
    color: white;
    font-size: 1.125rem;
    letter-spacing: 0.15em;
    font-weight: 300;
}

.footer-brand p:last-child {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #c9a962;
    border-color: rgba(201, 169, 98, 0.5);
}

.social-link svg {
    width: 1rem;
    height: 1rem;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

/* Medium screens (768px and above) */
@media (min-width: 768px) {
    .hero-nav {
        padding: 1.5rem 3rem;
    }

    .hero-nav-links {
        display: flex;
    }

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

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

    .hero-description {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .about {
        padding: 8rem 3rem;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6rem;
    }

    .about-content h2 {
        font-size: 2.25rem;
    }

    .stat-item p:first-child {
        font-size: 2.25rem;
    }

    .services {
        padding: 8rem 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .service-card {
        padding: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .testimonials {
        padding: 8rem 3rem;
    }

    .testimonial-container {
        min-height: 220px;
    }

    .testimonial-text {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .contact {
        padding: 8rem 3rem;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6rem;
    }

    .contact-info h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .form-input,
    .form-textarea {
        font-size: .875rem;
    }

    footer {
        padding: 3rem;
    }

    .footer-content {
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }

    .footer-brand {
        text-align: left;
    }

    .social-links {
        justify-content: flex-end;
    }

    .md\:hidden {
        display: none;
    }

    .md\:flex {
        display: flex;
    }
}

/* Large screens (1024px and above) */
@media (min-width: 1024px) {
    .hero-nav {
        padding: 1.5rem 5rem;
    }

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

    .about {
        padding: 8rem 5rem;
    }

    .services {
        padding: 8rem 5rem;
    }

    .testimonials {
        padding: 8rem 5rem;
    }

    .contact {
        padding: 8rem 5rem;
    }

    .section-header h2 {
        font-size: 3rem;
        line-height: 1;
    }

    .about-content h2 {
        font-size: 3rem;
    }

    .contact-info h2 {
        font-size: 3rem;
        line-height: 1;
    }

    footer {
        padding: 3rem 5rem;
    }

    .lg\:px-20 {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

/* ============================================
   LARA ACTS NAV MENU WIDGET STYLES
   ============================================ */
.lara-acts-nav-menu-widget {
    position: relative;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 10px;
    z-index: 30;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #c9a962;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateX(-100%);
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 100;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    /* opacity: 0; */
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    /* opacity: 1; */
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-inner {
    position: relative;
    width: 100%;
    /* max-width: 400px; */
    padding: 2rem;
    padding-top: 5rem;
    text-align: center;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    color: white;
    /* font-size: 2.5rem; */
    line-height: 1;
    padding: 0.5rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

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

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