/* ==========================
   GENERAL
========================== */

:root{
    --bg-main:#F7F2EC;
    --bg-overlay:#E8DCC7;
    --text-dark:#282118;
    --accent-gold:#B8860B;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/*header*/


header{
  background-color: var(--bg-overlay);
  padding:18px 0;
  border-bottom:3px solid var(--accent-gold);
  height:110px;
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-box img{
    height:80px;
    width:auto;
}

.logo-area h1{
    margin:0;
    font-size:2rem;
    line-height:1;
}

.tagline{
    margin-top:4px;
    font-size:.85rem;
    font-style:italic;
    white-space:nowrap;
}

nav{
    display:flex;
    gap:15px;
    margin-left:180px;
}

/* ==========================
   NAVIGATION
========================== */

nav{
    display:flex;
    gap:15px;
    margin-left:180px;
}

nav a{
    text-decoration:none;
    color:var(--text-dark);
    font-weight:bold;
    text-transform:uppercase;
    font-size:0.9rem;
    position:relative;
    transition:0.3s ease;
}

/* Hover Effect */

nav a:hover{
    color:var(--accent-gold);
}

/* Active Link */

nav a.active{
    color:var(--accent-gold);
}

/* Gold Underline */

nav a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:2px;
    background:#D4AF37;
}



/* ==========================
   MAIN CONTENT
========================== */

main{

    width:90%;

    max-width:1100px;

    margin:50px auto;

}


/* ==========================
   SECTIONS
========================== */

section{

    background:#fff;

    padding:35px;

    margin-bottom:35px;

    border-radius:10px;

    box-shadow:0 4px 12px rgba(0,0,0,.08);

}


/* ==========================
   HEADINGS
========================== */

section h2{

    color:#B8860B;

    margin-bottom:20px;

    border-bottom:2px solid #E8DCC7;

    padding-bottom:10px;

}

section h3{

    color:#8B6F47;

    margin-top:25px;

    margin-bottom:15px;

}


/* ==========================
   PARAGRAPHS
========================== */

section p{

    margin-bottom:18px;

    color:#444;

}


/* ==========================
   LISTS
========================== */

section ul{

    margin-left:30px;

    margin-bottom:20px;

}

section li{

    margin-bottom:10px;

}


/* ==========================
   STRONG
========================== */

strong{

    color:#8B6F47;

}


/* ==========================
   LAST SECTION
========================== */

body > section{

    width:90%;

    max-width:1100px;

    margin:0 auto 60px auto;

}
















/* contact page*/

.contact-container {
  display: flex;
  gap: 30px;
  padding: 20px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

/* CARDS */
.contact-info {
  flex: 1;
}

.card {
  background: white;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.card h3 {
  margin-bottom: 5px;
  color: #5a4023;
}

/* FORM */
.contact-form {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.input-group {
  display: flex;
  gap: 10px;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* BUTTON */
button {
  background: #6b4f2c;
  color: white;
  padding: 12px;
  border: none;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #5a4023;
}

/* FAQ */

#faq{
    width:90%;
    max-width:1100px;
    margin:70px auto;
    padding:0 20px;
}

.faq-item{
    background:white;
    padding:15px;
    margin-bottom:10px;
    border-radius:8px;
}

.faq-item h4{
    color:#5A4023;
}





body {
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  font-family: Georgia, 'Times New Roman', serif;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}



    /* Hero */

    .hero{
        padding:40px 20px;
    }

    .hero-contact{
        min-height:auto;
        padding:30px 20px;
        text-align:center;
    }

    .hero-contact h2{
        font-size:1.8rem;
        margin-bottom:20px;
    }

    .hero-contact p{
        font-size:.95rem;
        line-height:1.6;
        max-width:100%;
    }

    .hero-contact{
    max-width:900px;
    margin:70px auto;
    padding:80px 40px;

    text-align:center;

    background:linear-gradient(
        135deg,
        #F8F4EE,
        #EFE3D0
    );

    border:1px solid rgba(212,175,55,.3);
    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    position:relative;
    overflow:hidden;
}

.hero-contact h2{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    font-size:3rem;
}

.hero-contact h2::after{
    content:"☎";
    color:#D4AF37;
    font-size:2rem;
}


.hero-contact h2::after{
    content:"☎";
    color:#D4AF37;
    margin-left:15px;
    font-size:2rem;
}



.hero-contact p{
    max-width:650px;
    margin:auto;
    font-size:1.2rem;
    line-height:1.9;
    color:#5A4632;
}

    /* Main */

    main{
        width:95%;
        margin:auto;
    }

    /* Contact Layout */

    .contact-container{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    align-items:flex-start;
}

    .input-group{
        flex-direction:column;
    }

    /* Cards */

    .card{
        width:100%;
        padding:25px;
        margin-bottom:20px;
    }

    /* Form */

    .contact-form{
        width:100%;
        padding:25px;
        margin-top:20px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea{
        width:100%;
    }

  .fa-whatsapp{
    color:#D4AF37;
    font-size:1.7rem;
    margin-right:10px;

    text-shadow:
        0 0 5px #D4AF37,
        0 0 10px #D4AF37,
        0 0 20px #D4AF37,
        0 0 40px #D4AF37;

    animation:goldGlow 2s ease-in-out infinite alternate;
}

@keyframes goldGlow{

    from{
        transform:scale(1);

        text-shadow:
            0 0 5px #D4AF37,
            0 0 10px #D4AF37,
            0 0 20px #D4AF37;
    }

    to{
        transform:scale(1.1);

        text-shadow:
            0 0 10px #D4AF37,
            0 0 20px #D4AF37,
            0 0 30px #D4AF37,
            0 0 50px #D4AF37;
    }
}
.card p a{
    text-decoration:none;
    color:#282118;
    transition:.3s;
}

.card p a:hover{
    color:#D4AF37;
}

    /* FAQ */

    .faq{
        padding:0 10px;
    }

    .faq-item{
        padding:20px;
        margin-bottom:15px;
    }

    .faq-item h4{
        font-size:1rem;
    }

    /*success message*/

    .success-message{
    position:fixed;
    top:30px;
    right:30px;

    background:#15110D;
    color:#fff;

    padding:20px 30px;
    border-radius:15px;

    border:2px solid #D4AF37;

    font-size:1rem;
    font-family:Georgia, serif;
    font-weight:500;

    box-shadow:
        0 0 10px rgba(212,175,55,0.4),
        0 0 20px rgba(212,175,55,0.2),
        0 0 30px rgba(212,175,55,0.1);

    z-index:1000;

    animation:fadeIn 0.8s ease;
}

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateX(50px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

.success-message{
    letter-spacing:0.5px;
    line-height:1.6;
}




    

 

   

   
/*==========================
        FOOTER
==========================*/

footer{
    background:#120F0C;
    border-top:3px solid #D4AF37;
    color:#E8DCC7;
    padding:60px 8%;
}

/* Footer Layout */

.footer-links{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:50px;
    margin-bottom:40px;
}

/* Headings */

.footer-links h3{
    color:#D4AF37;
    font-size:1.5rem;
    margin-bottom:20px;
    font-family:serif;
    position:relative;
}

.footer-links h3::after{
    content:"";
    width:50px;
    height:2px;
    background:#D4AF37;
    display:block;
    margin-top:8px;
}

/* Paragraph */

.footer-info p{
    max-width:350px;
    line-height:1.8;
    color:#C9BBA8;
}

/* Lists */

.footer-links ul{
    list-style:none;
    padding:0;
}

.footer-links ul li{
    margin:15px 0;
}

.footer-links ul li a{
    text-decoration:none;
    color:#E8DCC7;
    transition:.3s;
}

.footer-links ul li a:hover{
    color:#D4AF37;
    padding-left:8px;
}

/* Social Icons */

.social-icons{
    display:flex;
    gap:20px;
    margin-top:25px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:1px solid #D4AF37;
    border-radius:50%;
    color:#D4AF37;
    font-size:20px;
    transition:.3s;
}

.social-icons a:hover{
    background:#D4AF37;
    color:#120F0C;
    transform:translateY(-5px);
}

/* Copyright */

.copyright{
    margin-top:50px;
    padding-top:25px;
    text-align:center;
    border-top:1px solid rgba(212,175,55,.3);
    color:#A89A86;
    font-size:14px;
}

.whatsapp{
    width:50px;
    height:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    border:2px solid #25D366;

    color:#25D366;

    box-shadow:
        0 0 10px #25D366,
        0 0 20px #25D366,
        0 0 30px rgba(37,211,102,.7);

    transition:.4s ease;
}

.whatsapp:hover{
    transform:translateY(-8px) scale(1.1);

    box-shadow:
        0 0 20px #25D366,
        0 0 40px #25D366,
        0 0 60px #25D366;

    background:#25D366;
    color:#120F0C;
}


.back-to-top{
    position:fixed;
    bottom:30px;
    right:30px;
    width:55px;
    height:55px;
    background:#D4AF37;
    color:#000;
    text-decoration:none;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.8rem;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

html{
    scroll-behavior:smooth;
}



.back-to-down{
    position:fixed;
    bottom:100px;
    right:30px;
    width:55px;
    height:55px;
    background:#D4AF37;
    color:#000;
    text-decoration:none;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.8rem;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

html{
    scroll-behavior:smooth;
}


/*==================================
        TABLETS
==================================*/

@media (max-width:992px){

    header{
        height:auto;
        padding:20px 0;
    }

    .header-inner{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .logo-area{
        justify-content:center;
    }

    nav{
        justify-content:center;
        flex-wrap:wrap;
        gap:20px;
    }

    .hero-contact{
        padding:50px 20px;
    }

    .hero-contact h2{
        font-size:2.2rem;
    }

    .hero-contact p{
        max-width:650px;
        margin:auto;
    }

    .contact-container{
        flex-direction:column;
    }

    .contact-form,
    .contact-info{
        width:100%;
    }

    #faq{
        width:95%;
    }

    .footer-links{
        justify-content:center;
        text-align:center;
        gap:40px;
    }

    .social-icons{
        justify-content:center;
    }
}


/*==================================
        MOBILE
==================================*/

@media (max-width:768px){

    /* HEADER */

    header{
        height:auto;
        padding:20px 0;
    }

    .header-inner{
        display:flex;
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .logo-area{
        flex-direction:column;
        gap:12px;
    }

    .logo-box img{
        height:60px;
    }

    .logo-area h1{
        font-size:1.6rem;
    }

    .tagline{
        font-size:.75rem;
    }

    nav{
        display:flex;
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
    }

    nav a{
        font-size:.85rem;
    }


    /* HERO */

    .hero-contact{
        min-height:auto;
        padding:40px 20px;
        text-align:center;
    }

    .hero-contact h2{
        font-size:1.9rem;
        margin-bottom:15px;
    }

    .hero-contact p{
        font-size:.95rem;
        line-height:1.7;
        max-width:330px;
        margin:auto;
    }


    /* CONTACT SECTION */

    .contact-container{
        flex-direction:column;
        width:95%;
        gap:20px;
    }

    .contact-info,
    .contact-form{
        width:100%;
    }

    .card{
        padding:20px;
    }

    .contact-form{
        padding:20px;
    }

    .input-group{
        flex-direction:column;
        gap:0;
    }

    input,
    select,
    textarea{
        width:100%;
    }


    /* FAQ */

    #faq{
        width:95%;
        margin:50px auto;
        padding:0;
    }

    .faq-item{
        padding:20px;
    }

    .faq-item h4{
        font-size:1rem;
    }


    /* FOOTER */

    footer{
        padding:50px 20px;
    }

    .footer-links{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:30px;
    }

    .footer-links ul{
        padding:0;
    }

    .social-icons{
        justify-content:center;
        gap:15px;
    }

    .copyright{
        font-size:.9rem;
    }
}
