:root {
    --primary: #0f1419;
    --secondary: #1c2738;
    --accent: #3a7bd5;
    --gold: #c9a227;
    --white: #ffffff;
    --gray: #7f8c9a;
    --light: #f0f4f8;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Raleway', sans-serif;
    color: var(--primary);
    background: var(--white);
    line-height: 1.6;
}
.navbar {
    background: var(--primary);
    padding: 1.5rem 0;
    border-bottom: 3px solid var(--gold);
}
.brand-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.brand-symbol {
    width: 50px;
    height: 50px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 900;
}
.brand-text-wrapper {
    display: flex;
    flex-direction: column;
}
.brand-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
}
.brand-accent-text {
    color: var(--gold);
}
.brand-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}
.nav-link {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white) !important;
    padding: 0.5rem 1.5rem !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: 0.3s;
}
.nav-link:hover::after {
    width: 100%;
}
.hero-section {
    min-height: 85vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(201, 162, 39, 0.03) 50px, rgba(201, 162, 39, 0.03) 100px),
        repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(58, 123, 213, 0.03) 50px, rgba(58, 123, 213, 0.03) 100px);
}
.hero-geometric {
    position: absolute;
    width: 400px;
    height: 400px;
    opacity: 0.05;
}
.hero-geo-1 {
    top: -100px;
    right: -100px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: var(--gold);
    animation: rotate 30s linear infinite;
}
.hero-geo-2 {
    bottom: -150px;
    left: -150px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    background: var(--accent);
    animation: rotate 25s linear infinite reverse;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-super {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 2rem;
}
.hero-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--white);
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: 3px;
}
.hero-highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}
.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--accent);
    z-index: -1;
    opacity: 0.3;
}
.hero-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.8;
}
.btn-geometric {
    font-family: 'Raleway', sans-serif;
    padding: 1.3rem 3.5rem;
    background: var(--gold);
    color: var(--primary);
    border: none;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    transition: 0.3s;
    position: relative;
}
.btn-geometric:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4);
}
.btn-outline-geometric {
    font-family: 'Raleway', sans-serif;
    padding: 1.3rem 3.5rem;
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}
.btn-outline-geometric:hover {
    background: var(--white);
    color: var(--primary);
}
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}
.section-super {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}
.section-desc {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}
.about-section {
    padding: 7rem 0;
    background: var(--light);
}
.value-block {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    transition: 0.3s;
    height: 100%;
    border-left: 5px solid var(--gold);
}
.value-block:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}
.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 2rem;
}
.value-heading {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}
.value-text {
    color: var(--gray);
    line-height: 1.8;
}
.service-section {
    padding: 7rem 0;
}
.service-item {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}
.service-item:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}
.service-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.4s;
}
.service-item:hover .service-img {
    transform: scale(1.15);
}
.service-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--gold);
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}
.service-body {
    padding: 3rem 2.5rem;
}
.service-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.2rem;
}
.service-text {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}
.contact-section {
    background: var(--primary);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(201, 162, 39, 0.02) 100px, rgba(201, 162, 39, 0.02) 200px);
}
.contact-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 162, 39, 0.3);
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}
.contact-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-15px);
}
.contact-symbol {
    width: 75px;
    height: 75px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--primary);
}
.contact-label {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.2rem;
}
.contact-info {
    color: var(--gray);
    line-height: 1.8;
}
.contact-info a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.95rem;
}
footer {
    background: #000000;
    color: var(--gray);
    padding: 4rem 0 2rem;
}
.footer-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}
@media (max-width: 768px) {
    .hero-main {
        font-size: 4rem;
    }
    .btn-geometric,
    .btn-outline-geometric {
        width: 100%;
        margin-bottom: 1rem;
    }
}