/* ==================================================
GLOBAL RESET
================================================== */
* {
box-sizing: border-box;
}

body {
margin: 0;
font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
background-color: #1a1a1a;
color: #e6e6e6;
line-height: 1.6;
}

/* ==================================================
LINKS (NO COLOR SHIFT)
================================================== */
a {
color: inherit;
text-decoration: none;
}

a:visited {
color: inherit;
}

/* ==================================================
HEADER + NAVIGATION
================================================== */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 22px 40px;
border-bottom: 1px solid #3a2f1b;
}

.header-left {
display: flex;
align-items: center;
}

.logo {
width: 42px;
height: auto;
margin-right: 14px;
}

.brand-name {
color: #c9a24d;
font-size: 14px;
letter-spacing: 2px;
text-transform: uppercase;
}

.brand-tag {
font-size: 12px;
color: #888;
margin-top: 4px;
}

nav a {
margin-left: 26px;
font-size: 13px;
letter-spacing: 1px;
text-transform: uppercase;
color: #c9a24d;
}

nav a:hover {
text-decoration: underline;
}

/* ==================================================
HERO / WELCOME / TOP SECTIONS
================================================== */
.hero {
display: flex;
justify-content: space-between;
align-items: center;
padding: 80px 60px 60px;
}

.hero-left {
max-width: 55%;
}

.hero-right {
max-width: 40%;
}

.tagline {
color: #c9a24d;
font-size: 13px;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 16px;
white-space: nowrap;
}

h1 {
font-size: 56px;
margin: 20px 0;
color: #ffffff;
font-weight: 700;
}

.hero-text {
max-width: 520px;
font-size: 16px;
color: #d6d6d6;
}

/* ==================================================
IMAGE FRAME (LINES ONLY – NO SHAPES)
================================================== */
.image-box {
border: 1px solid #c9a24d;
padding: 12px;
background-color: #111;
max-width: 380px;
}

.image-box img {
width: 100%;
display: block;
}

/* ==================================================
BUTTONS
================================================== */
.hero-buttons {
margin-top: 30px;
}

.button {
display: inline-block;
padding: 12px 28px;
border: 1px solid #c9a24d;
color: #c9a24d;
font-size: 13px;
letter-spacing: 1px;
text-transform: uppercase;
transition: all 0.3s ease;
margin-right: 14px;
}

.button:hover {
background-color: #c9a24d;
color: #1a1a1a;
}

.button.ghost {
border-color: #555;
color: #bbb;
}

.button.ghost:hover {
background-color: #555;
color: #fff;
}

/* ==================================================
CONTENT SECTIONS
================================================== */
.section {
padding: 80px 60px 50px;
}

.section.soft {
background-color: #202020;
}

h2 {
font-size: 28px;
color: #c9a24d;
font-weight: 600;
border-bottom: 1px solid #3a2f1b;
padding-bottom: 8px;
margin-bottom: 30px;
}

h3 {
font-size: 22px;
color: #c9a24d;
margin-top: 30px;
margin-bottom: 10px;
}

.divider {
height: 1px;
background-color: #3a2f1b;
margin: 40px 0;
}

.service p {
max-width: 700px;
color: #d6d6d6;
}

.founder-line {
margin-top: 40px;
font-size: 14px;
color: #aaa;
}

/* ==================================================
FOOTER (CLEAN + CONSISTENT)
================================================== */
.footer {
margin-top: 80px;
padding: 40px 0;
border-top: 1px solid #555;
text-align: center;
color: #c9a24d;
font-size: 13px;
letter-spacing: 2px;
}

.footer a {
color: #c9a24d;
margin: 0 10px;
}

.footer a:hover {
text-decoration: underline;
}

/* ==================================================
FLOATING WHATSAPP
================================================== */
.wa-float {
position: fixed;
bottom: 24px;
right: 24px;
background-color: #2d8f5a;
color: #ffffff;
padding: 14px 16px;
border-radius: 50%;
font-size: 14px;
font-weight: bold;
box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.wa-float:hover {
background-color: #3cb371;
}

/* ==================================================
MOBILE REFINEMENT (INTENTIONAL – NOT CLONED)
================================================== */
@media (max-width: 900px) {

header {
flex-direction: column;
align-items: flex-start;
padding: 20px;
}

nav {
margin-top: 12px;
}

.hero {
flex-direction: column;
padding: 50px 22px 30px;
}

.hero-left,
.hero-right {
max-width: 100%;
}

.hero-right {
margin-top: 24px;
display: flex;
justify-content: center;
}

.image-box {
max-width: 320px;
}

h1 {
font-size: 40px;
}

.tagline {
white-space: normal;
}

}
