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

/* HERO */
.hero {
    min-height: 85vh;
    background: linear-gradient(135deg, #081f1f 0%, #0a2e2e 50%, #0d3d3d 100%);
    display: flex;
    align-items: center;
    padding: 140px 60px 50px;
}

.hero-content {
    max-width: 900px;
}

.hero-content h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.hero-content h1 span {
    color: #ffffff;
}

.hero-tagline {
    color: #c9a84c;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 550px;
}

.hero-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    border: 1px solid #ffffff;
    color: #c9a84c;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #ffffff;
    color: #081f1f;
}

/* 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-size: 2.2rem;
    font-weight: 600;
    color: #0d5c5c;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* GLASS CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 8px 32px rgba(13, 92, 92, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(13, 92, 92, 0.15);
}

.glass-card i {
    font-size: 2rem;
    color: #0d5c5c;
    margin-bottom: 20px;
}

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

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

/* WHAT WE DO */
.what-we-do {
    background: #f8f9fa;
}

/* WHY MSYNC */
.why-msync {
    background: linear-gradient(135deg, #0d5c5c, #081f1f);
}

.why-msync .section-label {
    color: #c9a84c;
}

.why-msync h2 {
    color: #ffffff;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-list li {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.why-list li i {
    color: #c9a84c;
    font-size: 1.2rem;
}

/* SERVICES PREVIEW */
.services-preview {
    background: #ffffff;
}

.view-all {
    display: inline-block;
    margin-top: 40px;
    color: #0d5c5c;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-bottom: 1px solid #c9a84c;
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #c9a84c;
}

/* TESTIMONIALS */
.testimonials {
    background: #f8f9fa;
}

.testimonial-card p {
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card span {
    color: #c9a84c;
    font-size: 0.85rem;
    font-weight: 600;
}

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

