:root {
    /* Colors */
    --clr-bg: #05070a;
    --clr-surface: #0f131a;
    --clr-surface-light: #161c26;
    --clr-accent: #bc9355;
    --clr-accent-rgb: 188, 147, 85;
    --clr-gold-light: #d4af37;
    --clr-text-main: #f4f4f4;
    --clr-text-muted: #8b96a5;
    --clr-border: rgba(255, 255, 255, 0.08);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Container */
    --container-width: 1320px;
    --section-padding: 120px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--clr-text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--clr-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--clr-accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: rgba(var(--clr-accent-rgb), 0.9);
    backdrop-filter: blur(10px);
    color: var(--clr-bg);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(var(--clr-accent-rgb), 0.3);
    cursor: pointer;
    transition: background 0.4s, color 0.4s, border-color 0.4s, box-shadow 0.4s, opacity 0.4s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    color: white;
    background: transparent;
    box-shadow: 0 8px 25px rgba(var(--clr-accent-rgb), 0.2);
    border-color: var(--clr-accent);
}

.btn-outline {
    background: transparent;
    color: var(--clr-accent);
    border: 1px solid var(--clr-accent);
}

.btn-outline:hover {
    background: var(--clr-accent);
    color: var(--clr-bg);
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.4s ease;
}

header.sticky {
    position: fixed;
    background: rgba(5, 7, 10, 0.9);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    border-bottom: 1px solid var(--clr-border);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--clr-text-main);
    transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--clr-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
}

.mobile-nav.active {
    right: 0;
}

.mobile-links {
    text-align: center;
}

.mobile-links li {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-links a {
    font-size: 32px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.mobile-links .btn {
    margin-top: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--clr-text-main);
}

.logo-text span {
    color: var(--clr-accent);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--clr-text-main);
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--clr-accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: #05070a;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.6);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--clr-bg), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--clr-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-subtitle::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--clr-accent);
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero h1 span {
    color: var(--clr-accent);
    display: block;
}

.hero p {
    font-size: 18px;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 5;
    flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--clr-accent);
    font-size: 24px;
    animation: bounce 2s infinite;
    z-index: 2;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

/* Statistics Section */
.stats {
    padding: 80px 0;
    background: var(--clr-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    background: var(--clr-surface);
    padding: 60px 40px;
    border-radius: 4px;
    border: 1px solid var(--clr-border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--clr-accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
}

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background: var(--clr-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-img-box img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
}

.about-img-box::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--clr-accent);
    border-left: 2px solid var(--clr-accent);
}

.about-img-box::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid var(--clr-accent);
    border-right: 2px solid var(--clr-accent);
}

.section-head {
    margin-bottom: 40px;
}

.sub-head {
    display: block;
    color: var(--clr-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-head h2 {
    font-size: 48px;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--clr-text-muted);
    font-size: 17px;
    margin-bottom: 30px;
}

/* Practice Areas */
.practice {
    padding: var(--section-padding) 0;
    background: var(--clr-surface);
    position: relative;
    z-index: 2;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.practice-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.5s, border-color 0.5s, box-shadow 0.5s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.practice-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.practice-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.practice-card:hover .practice-img img {
    transform: scale(1.1);
}

.practice-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(5, 7, 10, 0.8));
}

.practice-card-content {
    padding: 30px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.practice-card-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--clr-accent);
    transition: 0.4s ease;
}

.practice-card:hover {
    border-color: var(--clr-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.practice-card:hover .practice-card-content::after {
    width: 100%;
}

.practice-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--clr-accent-rgb), 0.1);
    color: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    position: absolute;
    top: -25px;
    right: 30px;
    border: 1px solid var(--clr-accent);
}

.practice-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.practice-card p {
    color: var(--clr-text-muted);
    font-size: 15px;
}


/* Team Section */
.team {
    padding: var(--section-padding) 0;
    background: var(--clr-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    position: relative;
    overflow: hidden;
}

.team-img {
    height: 450px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    position: absolute;
    bottom: -100px;
    left: 20px;
    right: 20px;
    background: var(--clr-surface);
    padding: 25px;
    border: 1px solid var(--clr-border);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-info {
    bottom: 20px;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--clr-accent);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Contact/Consultation Form */
.consultation {
    padding: var(--section-padding) 0;
    background: linear-gradient(rgba(5, 7, 10, 0.9), rgba(5, 7, 10, 0.9)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-attachment: fixed;
}

.consultation-form-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--clr-surface);
    padding: 60px;
    border: 1px solid var(--clr-border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    color: white;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--clr-accent);
}

/* Footer */
footer {
    background: #05070a;
    padding: 100px 0 30px;
    border-top: 1px solid var(--clr-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-about p {
    color: var(--clr-text-muted);
    font-size: 15px;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--clr-text-muted);
}

.footer-social a:hover {
    background: var(--clr-accent);
    color: var(--clr-bg);
    border-color: var(--clr-accent);
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--clr-text-muted);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--clr-accent);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    font-size: 14px;
}




/* Pricing Section */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--clr-bg);
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform-style: preserve-3d;
}

.pricing-card.featured {
    background: rgba(var(--clr-accent-rgb), 0.05);
    border-color: rgba(var(--clr-accent-rgb), 0.4);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.pricing-card:hover {
    border-color: var(--clr-accent);
}

.pricing-card .btn {
    margin-top: auto;
    width: 100%;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--clr-accent);
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.pricing-features {
    margin: 30px 0 40px;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--clr-accent);
    font-size: 14px;
}

/* Quick CTA Section */
.quick-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(5, 7, 10, 0.8), rgba(5, 7, 10, 0.8)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-attachment: scroll;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-glass-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 40px;
    border-radius: 4px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

.cta-btns-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-glass-3d {
    background: rgba(var(--clr-accent-rgb), 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(var(--clr-accent-rgb), 0.4);
    color: var(--clr-bg);
    transform: perspective(1000px) translateZ(0);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.btn-glass-3d:hover {
    background: transparent;
    color: white;
}

.btn-outline-glass {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: white !important;
}

/* Scroll To Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--clr-accent);
    color: var(--clr-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links { gap: 20px; }
    h1 { font-size: 56px; }
    .hero h1 { font-size: 60px; }
    .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 42px; }
    .about-grid { grid-template-columns: 1fr; }
    .practice-grid, .team-grid, .pricing-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    
    .pricing-card.featured {
        transform: scale(1);
        margin: 20px 0;
    }
}

