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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 60px;
    height: 95px;
    background: rgba(10, 46, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
}

.nav-logo {
    width: auto;
    height: 110px;
    margin-top: -15px;
}

.nav-tagline {
    color: #c9a84c;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: -15px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c9a84c;
}

/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, #081f1f 0%, #0a2e2e 50%, #0d3d3d 100%);
    padding: 160px 60px 80px;
    text-align: center;
}

.page-header h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* SECTIONS GENERAL */
section {
    padding: 60px 60px;
}

.section-label {
    color: #c9a84c;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

section h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #0d5c5c;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* PORTFOLIO SECTION */
.portfolio-section {
    background: #f8f9fa;
}

.portfolio-intro {
    max-width: 700px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.portfolio-intro p {
    font-size: 1rem;
    color: #444;
    line-height: 1.9;
}

.cta-text {
    color: #444;
    font-size: 1rem;
}

.cta-text a {
    color: #c9a84c;
    text-decoration: none;
    border-bottom: 1px solid #c9a84c;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.cta-text a:hover {
    color: #0d5c5c;
}

/* PORTFOLIO GRID */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(13, 92, 92, 0.08);
    transition: transform 0.3s ease;
    min-height: 280px;
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-card.coming-soon {
    background: rgba(255, 255, 255, 0.9);
    border: 1px dashed rgba(201, 168, 76, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-inner {
    text-align: center;
    padding: 40px 25px;
}

.card-inner i {
    font-size: 2.5rem;
    color: #c9a84c;
    opacity: 0.5;
    margin-bottom: 20px;
}

.card-inner h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0d5c5c;
    margin-bottom: 10px;
}

.card-inner p {
    font-size: 0.85rem;
    color: #888;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #0d5c5c, #081f1f);
    text-align: center;
}

.cta-section h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 35px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid #c9a84c;
    color: #c9a84c;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cta-btn:hover {
    background: #c9a84c;
    color: #081f1f;
}

/* FOOTER */
.footer {
    background: #081f1f;
    padding: 60px 60px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 130px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 250px;
}

.footer-links h4,
.footer-contact h4 {
    color: #c9a84c;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #c9a84c;
}

.footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
}

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