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

:root {
    --primary-color: #0f1419;
    --secondary-color: #b8935f;
    --accent-color: #6d5d47;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #1a1f2e;
    --bg-white: #252b3b;
    --bg-card: #2a3142;
}

body {
    font-family: 'Libre Baskerville', Georgia, serif;
    line-height: 1.8;
    color: #e0e0e0;
    overflow-x: hidden;
    background: var(--bg-light);
}

header {
    background: var(--primary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Playfair Display', Georgia, serif;
}

.nav-center {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-phone:hover {
    opacity: 0.8;
}

.nav-phone i {
    font-size: 1rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.hero {
    background: linear-gradient(135deg, #0a0e14 0%, #1a1f2e 100%);
    color: var(--text-light);
    padding: 150px 2rem 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L100 50L50 100L0 50z" fill="rgba(201,169,97,0.08)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
    text-align: left;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding-bottom:100px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(184,147,95,0.2) 0%, transparent 70%);
    border-radius: 10px;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 25px 40px rgba(255, 255, 255, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
    object-fit: cover;
    display: block;
}

.hero-image img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 25px 40px rgba(255, 255, 255, 0.3));
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(184,147,95,0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201,169,97,0.4);
}

.services {
    padding: 80px 2rem;
    background: var(--bg-light);
}

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

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 4rem;
    color: #fff;
}

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

.service-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
    border-top: 4px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    transform: none;
    font-size: 8rem;
    color: var(--secondary-color);
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #fff;
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.divider-image {
    width: 100%;
    height: 400px;
    background-image: url('../img/pexels-ekaterina-bolovtsova-6077091.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.divider-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 31, 46, 0.3) 0%, rgba(37, 43, 59, 0.5) 100%);
}

.about {
    padding: 80px 2rem;
    background: var(--bg-white);
}

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

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
}

.about-header p {
    font-size: 1rem;
    line-height: 1.8;
    color: #fff;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

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

.about-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
    border-left: 4px solid var(--secondary-color);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.about-card-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
}

.about-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #fff;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #fff;
}

.about-features {
    list-style: none;
}

.about-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
    color: #fff;
}

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.about-image {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 4rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.contact {
    padding: 80px 2rem;
    background: var(--primary-color);
    color: var(--text-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

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

.contact-logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(184, 147, 95, 0.3));
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
}

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

.contact-item-icon {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 0.3rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item p {
    font-size: 0.95rem;
    color: #fff;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    padding: 0.6rem 1.2rem;
    background: #149443;
    color: #fff !important;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 1.1rem;
}

footer {
    background: #0f1419;
    color: var(--text-light);
    text-align: center;
    padding: 3rem 2rem 2rem;
}

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

.footer-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Playfair Display', Georgia, serif;
}

footer p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    opacity: 0.6;
    transition: opacity 0.3s;
    text-decoration: none;
}

.powered-by:hover {
    opacity: 1;
}

.powered-by span {
    font-size: 0.9rem;
}

.powered-by img {
    height: 30px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    header {
        padding: 0.5rem 0;
    }

    nav {
        padding: 0 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .logo img {
        height: 32px;
    }

    .logo-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .nav-links {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .nav-center {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-phone {
        font-size: 0.85rem;
    }

    .nav-phone i {
        font-size: 0.85rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 2rem;
    }

    .hero-image img {
        max-width: 280px;
    }

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

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .divider-image {
        background-attachment: scroll;
    }

    .contact-logo img{
        max-width: 150px;
    }

    .footer-logo{
        gap:0rem
    }

    .footer-logo img{
        display:none
    }

    .contact{
        padding-bottom:10px;
    }
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}
