:root {
    --bg-color: #030812;
    --bg-gradient: radial-gradient(circle at 50% 0%, #0c1a38 0%, #030812 70%);
    --text-primary: #f8f9fa;
    --text-secondary: #a3b1c6;
    --highlight: #d4af37;
    --highlight-secondary: #ebd581;
    --glass-bg: rgba(12, 26, 56, 0.3);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-border-hover: rgba(212, 175, 55, 0.5);
    --glass-blur: 24px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
}

body {
    background: var(--bg-gradient);
    background-color: var(--bg-color);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Luxury Background Elements */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.4;
}

.shape-1 {
    top: -5%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, rgba(0,0,0,0) 60%);
}

.shape-2 {
    bottom: 10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(12,26,56,0.8) 0%, rgba(0,0,0,0) 60%);
}

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

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

ul {
    list-style: none;
}

/* Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.highlight {
    background: linear-gradient(135deg, var(--highlight), var(--highlight-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-link {
    color: var(--highlight);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}
.text-link:hover {
    color: var(--highlight-secondary);
    border-color: var(--highlight-secondary);
}

.text-center { text-align: center; }
.mb-5 { margin-bottom: 3.5rem; }
.mt-auto { margin-top: auto; }
.mt-4 { margin-top: 1.5rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-15 { gap: 1.5rem; }

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--highlight), var(--highlight-secondary));
    color: #050a14;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    color: var(--highlight);
    border: 1px solid var(--glass-border);
    background: rgba(212, 175, 55, 0.05);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--glass-border-hover);
    transform: translateY(-3px);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--highlight);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.btn-text i {
    transition: var(--transition);
    font-size: 1.2rem;
}
.btn-text:hover i {
    transform: translateX(6px);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 25px 0;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    padding: 15px 0;
    background: rgba(4, 9, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo-img {
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
    color: var(--highlight);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--highlight);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 20px;
}

.menu-btn {
    display: none;
    font-size: 2.2rem;
    cursor: pointer;
    color: var(--highlight);
}

/* Base Sections */
.section {
    padding: 120px 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--highlight);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--highlight);
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero .title {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.qualification {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
}

.hero .description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 45px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-img-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.img-box {
    position: relative;
    border-radius: 12px;
    padding: 15px;
    max-width: 450px;
    width: 100%;
}

.hero-img {
    width: 100%;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.glass-float {
    position: absolute;
    background: rgba(12, 26, 56, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    animation: float 4s ease-in-out infinite;
}

.glass-float i {
    color: var(--highlight);
    font-size: 1.8rem;
}

.float-1 {
    top: 50px;
    left: -60px;
}

.float-2 {
    bottom: 50px;
    right: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* About Section */
.about-card {
    padding: 45px;
    transition: var(--transition);
    border-radius: 12px;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.card-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.02));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: var(--highlight);
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;
}

.about-card p {
    color: var(--text-secondary);
}

.about-card.row-span {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Services Section */
.service-card {
    padding: 55px 45px;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 12px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--highlight);
    margin-bottom: 30px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: #fff;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 35px;
}

/* Approach Section */
.approach-grid {
    margin-top: 40px;
}

.approach-item {
    text-align: center;
    padding: 30px;
}

.approach-icon {
    font-size: 3rem;
    color: var(--highlight);
    margin-bottom: 20px;
}

.approach-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.approach-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-wrapper {
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    border-radius: 12px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    color: var(--highlight);
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: #fff;
}

.contact-details p, .contact-details a {
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-details a:hover {
    color: var(--highlight);
}

.contact-cta h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-cta p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* Footer */
.footer {
    padding: 35px 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    background: rgba(4, 9, 20, 0.8);
    backdrop-filter: blur(15px);
}

.footer-sub {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 8px;
}

/* Animations */
.reveal-left { opacity: 0; transform: translateX(-50px); transition: 1s cubic-bezier(0.25, 0.8, 0.25, 1); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: 1s cubic-bezier(0.25, 0.8, 0.25, 1); }
.reveal-up { opacity: 0; transform: translateY(50px); transition: 1s cubic-bezier(0.25, 0.8, 0.25, 1); }
.reveal-fade { opacity: 0; transition: 1s cubic-bezier(0.25, 0.8, 0.25, 1); }

.reveal-left.active, .reveal-right.active, .reveal-up.active, .reveal-fade.active {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .title { font-size: 3.8rem; }
    .hero-container { gap: 30px; }
    .float-1 { left: -20px; }
    .float-2 { right: -10px; }
    .contact-wrapper { gap: 40px; padding: 40px; }
}

@media (max-width: 900px) {
    .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-btn { display: block; }
    .navbar {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(4, 9, 20, 0.98);
        backdrop-filter: blur(25px);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: -1;
    }
    .navbar.active { top: 0; }
    .nav-links { flex-direction: column; align-items: center; gap: 40px; }
    .nav-link { font-size: 1.8rem; }
    
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .hero-content { display: flex; flex-direction: column; align-items: center; order: 2; }
    .hero-img-wrapper { order: 1; justify-content: center; }
    .hero-btns { justify-content: center; }
    
    .grid-2 { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-cta { text-align: center; border-top: 1px solid var(--glass-border); padding-top: 40px; }
}

@media (max-width: 576px) {
    .hero .title { font-size: 3rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn { text-align: center; width: 100%; }
    .float-1, .float-2 { display: none; }
    .section { padding: 80px 0; }
    .grid-3 { grid-template-columns: 1fr; }
    .about-card, .service-card { padding: 35px 25px; }
    .contact-wrapper { padding: 30px 20px; }
}
