/* --- Variables & Reset --- */
:root {
    --bg-dark: #050505;
    --bg-card: #111111;
    --primary-gold: #D4AF37;
    --gold-light: #F9E596;
    --gold-dark: #997A15;
    --text-main: #EAEAEA;
    --text-muted: #A0A0A0;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-weight: 600;
}

.text-gold {
    color: var(--primary-gold);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark));
    color: var(--bg-dark);
    border: none;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--primary-gold));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 400;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-gold);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(circle at center, #1a1a1a 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/map-bg.png'); /* Abstract map from reference */
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
    animation: fadeIn 1.5s ease;
    text-align: left;
}

.hero-text {
    flex: 1;
}

.mdrt-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--gold-light), var(--primary-gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-subtitle .divider {
    color: var(--primary-gold);
    margin: 0 0.8rem;
    opacity: 0.5;
}

.hero-quote {
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-gold);
    margin-bottom: 2.5rem;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -15px;
    color: rgba(212, 175, 55, 0.15);
    font-size: 2.5rem;
}

.hero-quote .tagline {
    font-size: 1.8rem;
    margin: 0;
    font-family: var(--font-heading);
    color: var(--gold-light);
    line-height: 1.4;
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.services-tags .tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.services-tags .tag:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
    position: relative;
}

.hero-image-container img {
    max-width: 100%;
    width: 450px;
    border-radius: 10px;
    border-bottom: 2px solid var(--primary-gold);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.2));
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-text {
        text-align: center;
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-quote {
        border-left: none;
        padding-left: 0;
        border-bottom: 2px solid var(--primary-gold);
        padding-bottom: 1rem;
    }
    
    .quote-icon {
        display: none;
    }
    
    .services-tags {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image-container {
        justify-content: center;
        margin-top: 3rem;
    }
}

/* --- Services Section --- */
.services {
    background-color: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: linear-gradient(160deg, #121212 0%, #080808 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background: var(--primary-gold);
    transform: scale(1.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: #000;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.service-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-top: auto;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--gold-light);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* --- Stats & Achievements --- */
.achievements {
    padding: 6rem 0;
    background-color: var(--bg-card);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-gold);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: linear-gradient(145deg, #181818 0%, #0a0a0a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-top: 3px solid var(--primary-gold);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.achievement-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.2);
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.achievement-card p {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.4;
    margin: 0;
}

/* --- Badges Section --- */
.badges-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    flex-wrap: wrap;
}

.premium-badge {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.premium-badge:hover {
    transform: scale(1.05);
}

.badge-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px dashed var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(212,175,55,0.1);
    animation: rotateSlow 20s linear infinite;
}

.badge-ring i {
    font-size: 3rem;
    color: var(--primary-gold);
    animation: rotateSlow 20s linear infinite reverse;
}

.premium-badge span {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Contact Section --- */
.contact {
    padding: 8rem 0;
    background-color: var(--bg-card);
    border-top: 1px solid rgba(212, 175, 55, 0.05);
    position: relative;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    text-align: center;
}

.contact-item {
    padding: 3rem 2rem;
    background: linear-gradient(145deg, #181818 0%, #0a0a0a 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: block;
}

.contact-item:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.contact-item i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2));
}

.contact-item h3 {
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-family: var(--font-heading);
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-main);
    transition: var(--transition);
}

.contact-item:hover p {
    color: var(--gold-light);
}

/* --- Skills / Stats --- */
.skills {
    background-color: var(--bg-dark);
}

.skill-item {
    width: 100%;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.skill-info h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    font-family: var(--font-heading);
    margin: 0;
}

.skill-info span {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.progress-line {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--primary-gold), var(--gold-light));
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.1, 0.5, 0.2, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* --- Footer --- */
.footer {
    background: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--primary-gold);
    margin-right: 10px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-quote .tagline {
        font-size: 1.4rem;
    }
    .services-tags .tag {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }
    .skills-grid {
        gap: 1.5rem !important;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .design-credit {
        display: block;
        margin-top: 0.5rem;
    }
}
