* {
    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;
}

.header-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

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

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

/* CONTACT SECTION */
.contact-section {
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* FORM */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 8px 32px rgba(13, 92, 92, 0.06);
}

.contact-form-wrapper h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0d5c5c;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #444;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(13, 92, 92, 0.2);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #1a1a1a;
    background: #ffffff;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c9a84c;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1px solid #c9a84c;
    color: #c9a84c;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin-top: 10px;
}

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

/* CONTACT INFO */
.contact-info h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0d5c5c;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    padding: 25px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(13, 92, 92, 0.05);
}

.info-card i {
    font-size: 1.5rem;
    color: #0d5c5c;
    margin-top: 3px;
    flex-shrink: 0;
}

.info-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.info-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
}

/* NEXT STEPS */
.next-steps {
    background: linear-gradient(135deg, #0d5c5c, #081f1f);
    border-radius: 16px;
    padding: 30px 25px;
    margin-top: 20px;
}

.next-steps h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #c9a84c;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.next-steps ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.next-steps ul li {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.next-steps ul li span {
    color: #c9a84c;
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* 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;
}