*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Segoe UI", Arial, sans-serif;
}

body{
    background:#ffffff;
    color:#000000;
}

h1,h2,h3,h4,h5,h6{
    color:#D4AF37;
}

dl{margin-left:20px;}

dt{
    display:list-item;
    list-style-type:disc;
    list-style-position:outside;
    margin-left:20px;
    font-weight:600;
}

dd{
    margin-left:40px;
    margin-bottom:10px;
}

table{
    border-collapse:collapse;
    width:100%;
    margin-top:20px;
}

table th,table td{
    padding:12px 15px;
    text-align:left;
}

table th{
    background:#f8f8f8;
    font-weight:bold;
}

.gold-highlight{
    color:#D4AF37;
    font-weight:bold;
}

/* HEADER */
.main-header{
    background:#ffffff;
    border-bottom:2px solid #D4AF37;
    height:100px;
    padding:0 60px;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
}

.header-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:100%;
}

.logo{
    margin-top:10px;
    height:100%;
    display:flex;
    align-items:center;
}

.logo img{
    height:190px !important;
    width:auto !important;
    object-fit:contain;
}

/* NAV */
.nav-menu ul{
    list-style:none;
    display:flex;
    gap:40px;
}

.nav-menu ul li{
    position:relative;
}

.nav-menu ul li a{
    text-decoration:none;
    color:#D4AF37;
    font-size:16px;
    font-weight:600;
}

.nav-menu ul li a:hover{
    color:#3fa9f5;
}

/* DROPDOWN */
.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    margin-top:10px;
    background:#ffffff;
    border:1px solid #D4AF37;
    width:320px;              
    list-style:none;
    padding:10px 0;
    border-radius:6px;
    display:flex;
    flex-direction:column;
    opacity:0;
    visibility:hidden;
    transition:0.3s ease;
}


/* SHOW ON HOVER */
.nav-menu ul li:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
}

/* SHOW WHEN CLICKED */
.nav-menu ul li.active .dropdown-menu{
    opacity:1;
    visibility:visible;
}

.dropdown-menu li a{
    display:block;              
    padding:12px 20px;
    font-size:14px;
    color:#D4AF37;
    text-decoration:none;
    line-height:1.4;
    white-space:normal;         
}
.dropdown-menu li a:hover{
    background:#f9f6e8;
}

/* CONTENT */
.content{
    padding:20px 60px;
    line-height:1.7;
    margin-top:100px;
    padding-bottom:10px;
}

.content h2{
    margin-bottom:15px;
}

.content p{
    margin-bottom:12px;
}
.content p,
.content ul li{
    text-align:justify;
    text-justify:inter-word;
}
table td{
    text-align:justify;
}


/* FOOTER */
.footer{
    padding:40px 60px;
    font-size:14px;
    background:#ffffff;
    color:#000000;
    border-top:2px solid #D4AF37;
}
.footer p{
    text-align:justify;
}

.footer-col ul li{
    text-align:left;   /* keep lists clean */
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    max-width:1200px;
    margin:0 auto;   
}
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
    margin-left: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #000000;
}

/* QUERY FORM */
.query-form-wrapper{
    background:#ffffff;
    padding:20px 25px;
    border-radius:8px;
    max-width:480px;
    margin-top:15px;
    border:2px solid #D4AF37;
}

.query-form-wrapper h3{
    font-size:22px;
    margin-bottom:15px;
}

.query-form-wrapper input,
.query-form-wrapper textarea{
    width:100%;
    padding:8px 12px;
    margin-bottom:12px;
    border-radius:6px;
    border:1.5px solid #D4AF37;
    font-size:14px;
}

.query-form-wrapper textarea{
    height:70px;
    resize:none;
}

.query-form-wrapper button{
    width:100%;
    background:#D4AF37;
    color:#ffffff;
    border:none;
    padding:10px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
}

.query-form-wrapper button:hover{
    background:#b9972e;
}
/* CONTACT FLEX LAYOUT */
.contact-flex{
    display:flex;
    gap:60px;
    align-items:stretch;   /* Makes both sides equal height */
    flex-wrap:wrap;
}

.contact-left{
    flex:1;
    min-width:320px;
}

.contact-email{
    margin-bottom:20px;
}

.contact-right{
    flex:1;
    min-width:320px;
    display:flex;
}

.contact-right img{
    width:100%;
    height:100%;
    object-fit:cover;   
    border-radius:10px;
}
.phone-group{
    display:flex;
    gap:10px;
}

.phone-group select{
    padding:8px;
    border-radius:6px;
    border:1.5px solid #D4AF37;
    font-size:14px;
    background:white;
}


/* ABOUT */
.about-container{
    display:flex;
    gap:40px;
    align-items:center;
    margin-top:10px;
}

.about-image{
  align-self: flex-start;
  margin-top: 65px;
}

.about-image img{
    width:420px;
    height:290px;
    border-radius:10px;
}

.about-text{
    text-align:justify;
    font-size:16px;
    line-height:1.7;
}

/* IT IMAGE */
.it-image-wrapper{
    text-align:center;
    margin:30px 0;
}

.it-image-wrapper img{
    width:80%;
    max-width:900px;
    border-radius:10px;
}
.phone-group {
    display: flex;
    gap: 10px;
    align-items: stretch; 
}

.phone-group select,
.phone-group input {
    height: 45px;              
    padding: 0 12px;
    border: 1px solid #d4af37;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}
.phone-group select {
    width: 110px;
}
.phone-group input {
    flex: 1;
}
.policy-heading {
    display: block;
    margin-left: 15px;
}
.terms-container {
    margin: 15px 0;
    width: 100%;
}
.terms-label{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
}

.terms-label input{
    margin:0;
    width:16px;
    height:16px;
    accent-color:#D4AF37;
}
.terms-label a { 
    text-decoration: underline;
}
.captcha-box{
margin:15px 0;
}

.captcha-title{
font-size:14px;
margin-bottom:6px;
}

.captcha-row{
display:flex;
align-items:center;
gap:10px;
}

#captchaText{
font-size:20px;
letter-spacing:4px;
background:#f5f5f5;
padding:6px 12px;
font-weight:bold;
border-radius:4px;
}

#captchaInput{
margin-top:8px;
width:100%;
padding:8px;
border:1.5px solid #D4AF37;
border-radius:6px;
}
.content ul{
    padding-left:20px;
}

.content ul li{
    padding-left:-10px;
    margin-bottom:6px;
}
#sprivacy ul{
    padding-left:35px;
}
#sprivacy{
    line-height:1.8;
}
#sprivacy p{
    text-align: justify;
    line-height: 1.7;
}
.content p{
    text-align:justify;
    margin-left:0;
}
.content b{
    display:block;
    margin-top:10px;
    margin-bottom:4px;
}
.copyright-bar{
text-align:center;
margin-top:30px;
padding:15px;
font-size:13px;
border-top:1px solid #ddd;
color:#555;
}
.cookie-popup{
    position:fixed;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    width:90%;
    max-width:700px;
    background:#fff;
    border:2px solid #D4AF37;
    padding:20px;
    border-radius:10px;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.cookie-text h4{
    margin-bottom:8px;
    color:#000;
}

.cookie-text p{
    font-size:14px;
    margin-bottom:15px;
}

.cookie-options{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-bottom:15px;
}

.cookie-options label{
    font-size:14px;
    display:flex;
    align-items:center;
    gap:10px;
}

.cookie-buttons{
    display:flex;
    gap:10px;
}

.cookie-buttons button{
    background:#D4AF37;
    color:#fff;
    border:none;
    padding:8px 14px;
    border-radius:5px;
    cursor:pointer;
}

.cookie-buttons button:hover{
    background:#b9972e;
}
.opsr-content h2{
    margin-bottom:5px;
}

.opsr-content p{
    margin-top:0;
    margin-bottom:8px;
}
.hero{
    position:relative;
    width:100%;
    height:500px;
    overflow:hidden;
}

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

/* TEXT ON IMAGE */
.hero-text{
    position:absolute;
    top:59%;
    left:170px;   /* left shift */
    transform:translateY(-50%);
    color:#D4AF37;
    max-width:500px;
}

/* Heading */
.hero-text h4{
    font-size:42px;
    margin-bottom:10px;
    color:#D4AF37;
}

/* Paragraph */
.hero-text p{
    font-size:18px;
    line-height:1.6;
    color:#D4AF37;
}
.hero::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
}
.footer-whatsapp{
margin-top:10px;
}

.footer-whatsapp a{
text-decoration:none;
color:#000000;   /* same footer text color */
font-size:14px;
}

.footer-whatsapp a i{
color:#25D366;   /* green icon */
margin-right:5px;
font-size:18px;
}