:root {
     /* Color Palette - Professional Legal */
     --bg: #0a0e27;
     --bg-secondary: #131829;
     --bg-card: #1a1f3a;
     --text: #e8eaf0;
     --text-secondary: #a0a8c0;

     /* Brand Colors */
     --primary: #d4af37;
     --primary-dark: #b8941f;
     --primary-light: #f0d97d;
     --accent: #6366f1;
     --accent-dark: #4f46e5;

     /* Semantic Colors */
     --success: #10b981;
     --warning: #f59e0b;
     --danger: #ef4444;

     /* Borders & Shadows */
     --border: rgba(212, 175, 55, 0.15);
     --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
     --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
     --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.6);
     --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.2);

     /* Spacing & Layout */
     --radius: 12px;
     --radius-lg: 20px;
     --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     --max-width: 1400px;
}

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

html {
     scroll-behavior: smooth;
}

body {
     font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
     background: var(--bg);
     color: var(--text);
     line-height: 1.7;
     overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
     font-family: "Playfair Display", Georgia, serif;
     font-weight: 700;
     line-height: 1.2;
}

p {
     margin: 1rem 0;
     font-size: 1.05rem;
     color: var(--text-secondary);
}

strong {
     color: var(--primary);
     font-weight: 600;
}

.lead-text {
     font-size: 1.25rem;
     font-weight: 500;
     color: var(--text);
     line-height: 1.6;
}

/* Header */
header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     background: rgba(10, 14, 39, 0.95);
     backdrop-filter: blur(20px);
     border-bottom: 1px solid var(--border);
     box-shadow: var(--shadow-md);
     transition: var(--transition);
}

header.scrolled {
     background: rgba(10, 14, 39, 0.98);
     box-shadow: var(--shadow-lg);
}

.nav-container {
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 1.2rem 2rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
}

.nav-brand {
     display: flex;
     align-items: center;
     gap: 1rem;
     cursor: pointer;
     transition: var(--transition);
}

.nav-brand:hover {
     transform: translateX(5px);
}

.nav-brand img {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     border: 2px solid var(--primary);
     box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
     transition: var(--transition);
}

.nav-brand:hover img {
     transform: rotate(360deg);
     box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.brand-text {
     font-size: 1.1rem;
     font-weight: 700;
     color: var(--text);
     letter-spacing: -0.5px;
}

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

.nav-link {
     color: var(--text-secondary);
     text-decoration: none;
     padding: 0.75rem 1.5rem;
     border-radius: var(--radius);
     font-weight: 500;
     font-size: 0.95rem;
     transition: var(--transition);
     position: relative;
}

.nav-link::before {
     content: '';
     position: absolute;
     bottom: 0.5rem;
     left: 50%;
     transform: translateX(-50%) scaleX(0);
     width: 80%;
     height: 2px;
     background: var(--primary);
     transition: var(--transition);
}

.nav-link:hover {
     color: var(--primary);
}

.nav-link:hover::before {
     transform: translateX(-50%) scaleX(1);
}

.cta-nav {
     background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
     color: var(--bg);
     font-weight: 700;
     box-shadow: var(--shadow-glow);
}

.cta-nav::before {
     display: none;
}

.cta-nav:hover {
     color: var(--bg);
     transform: translateY(-2px);
     box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

.mobile-menu-toggle {
     display: none;
     flex-direction: column;
     gap: 5px;
     background: none;
     border: none;
     cursor: pointer;
     padding: 8px;
}

.mobile-menu-toggle span {
     width: 28px;
     height: 3px;
     background: var(--primary);
     border-radius: 2px;
     transition: var(--transition);
}

/* Main Content */
main {
     margin-top: 80px;
}

/* Hero Section */
.hero-section {
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 8rem 2rem 6rem;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
     min-height: calc(100vh - 80px);
}

.hero-content {
     animation: fadeInLeft 1s ease-out;
}

.hero-title {
     font-size: 4rem;
     font-weight: 800;
     line-height: 1.1;
     margin-bottom: 1.5rem;
     background: linear-gradient(135deg, var(--text) 0%, var(--primary-light) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
}

.highlight {
     color: var(--primary);
     -webkit-text-fill-color: var(--primary);
     position: relative;
}

.highlight::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 12px;
     background: rgba(212, 175, 55, 0.2);
     z-index: -1;
}

.hero-subtitle {
     font-size: 1.35rem;
     line-height: 1.7;
     color: var(--text-secondary);
     margin-bottom: 3rem;
}

.hero-cta {
     display: flex;
     gap: 1.5rem;
     flex-wrap: wrap;
}

.hero-image {
     position: relative;
     animation: fadeInRight 1s ease-out;
}

.hero-image img {
     width: 100%;
     height: auto;
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-lg);
     border: 1px solid var(--border);
     transition: var(--transition);
}

.hero-image:hover img {
     transform: scale(1.02);
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

/* Buttons */
.btn-primary,
.btn-secondary {
     padding: 1.2rem 2.5rem;
     border-radius: var(--radius);
     font-weight: 700;
     font-size: 1.05rem;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
     transition: var(--transition);
     cursor: pointer;
     border: none;
     font-family: inherit;
}

.btn-primary {
     background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
     color: var(--bg);
     box-shadow: var(--shadow-glow);
}

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

.btn-secondary {
     background: transparent;
     color: var(--text);
     border: 2px solid var(--border);
}

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

/* Sections */
section {
     max-width: var(--max-width);
     margin: 8rem auto;
     padding: 0 2rem;
}

.section-header {
     margin-bottom: 4rem;
}

.section-header.centered {
     text-align: center;
}

.section-tag {
     display: inline-block;
     padding: 0.5rem 1.2rem;
     background: rgba(212, 175, 55, 0.1);
     color: var(--primary);
     border-radius: 50px;
     font-size: 0.9rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 1rem;
}

.section-title {
     font-size: 3.5rem;
     margin-bottom: 1.5rem;
     color: var(--text);
}

.section-subtitle {
     font-size: 1.25rem;
     color: var(--text-secondary);
     max-width: 800px;
     margin: 0 auto;
}

/* About Section */
.about-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: start;
     margin-bottom: 4rem;
}

.about-text p {
     margin-bottom: 1.5rem;
}

.about-stats {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.5rem;
}

.stat-card {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     padding: 2rem;
     text-align: center;
     transition: var(--transition);
}

.stat-card:hover {
     transform: translateY(-5px);
     border-color: var(--primary);
     box-shadow: var(--shadow-glow);
}

.stat-number {
     font-size: 3rem;
     font-weight: 800;
     color: var(--primary);
     font-family: "Playfair Display", serif;
     margin-bottom: 0.5rem;
}

.stat-label {
     font-size: 0.95rem;
     color: var(--text-secondary);
     font-weight: 500;
}

.office-hours {
     display: flex;
     align-items: center;
     gap: 1rem;
     padding: 1.5rem 2rem;
     background: rgba(212, 175, 55, 0.05);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     border-left: 4px solid var(--primary);
}

.office-hours .icon {
     width: 24px;
     height: 24px;
     filter: brightness(0) saturate(100%) invert(76%) sepia(77%) saturate(429%) hue-rotate(3deg) brightness(92%) contrast(87%);
}

/* Areas Section */
.areas-image {
     margin-bottom: 4rem;
}

.areas-image img {
     width: 100%;
     height: 400px;
     object-fit: cover;
     border-radius: var(--radius-lg);
     border: 1px solid var(--border);
     box-shadow: var(--shadow-lg);
}

.areas-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
     margin-bottom: 4rem;
}

.area-card {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     padding: 2.5rem;
     transition: var(--transition);
}

.area-card:hover {
     border-color: var(--primary);
     box-shadow: var(--shadow-glow);
     transform: translateY(-5px);
}

.area-header {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1.5rem;
}

.area-icon {
     width: 40px;
     height: 40px;
     padding: 8px;
     background: rgba(212, 175, 55, 0.1);
     border-radius: var(--radius);
}

.area-title {
     font-size: 1.75rem;
     color: var(--text);
     margin: 0;
}

.area-description {
     color: var(--text-secondary);
     margin-bottom: 1.5rem;
     line-height: 1.7;
}

.area-toggle {
     width: 100%;
     padding: 1rem;
     background: rgba(212, 175, 55, 0.1);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     color: var(--primary);
     font-weight: 600;
     font-size: 0.95rem;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: var(--transition);
     font-family: inherit;
}

.area-toggle:hover {
     background: rgba(212, 175, 55, 0.15);
     border-color: var(--primary);
}

.toggle-icon {
     font-size: 1.5rem;
     font-weight: 700;
     transition: var(--transition);
}

.area-toggle.active .toggle-icon {
     transform: rotate(45deg);
}

.area-toggle.active .toggle-text {
     opacity: 0.7;
}

.area-content {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.area-content.active {
     max-height: 1000px;
     margin-top: 1.5rem;
}

.services-list {
     list-style: none;
     padding: 0;
}

.services-list li {
     padding: 1rem 0;
     border-bottom: 1px solid rgba(212, 175, 55, 0.1);
     color: var(--text-secondary);
     line-height: 1.6;
}

.services-list li:last-child {
     border-bottom: none;
}

.services-list li strong {
     color: var(--primary);
     font-weight: 600;
}

.cta-container {
     text-align: center;
}

/* Contact Section */
.contact-image {
     margin-bottom: 4rem;
}

.contact-image img {
     width: 100%;
     height: 400px;
     object-fit: cover;
     border-radius: var(--radius-lg);
     border: 1px solid var(--border);
     box-shadow: var(--shadow-lg);
}

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

.contact-card {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     padding: 2rem;
     text-decoration: none;
     transition: var(--transition);
     cursor: pointer;
     overflow: hidden;
}

.contact-card:hover {
     border-color: var(--primary);
     box-shadow: var(--shadow-glow);
     transform: translateY(-5px);
}

.contact-card.address {
     cursor: default;
}

.contact-card-inner {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     gap: 1.5rem;
     width: 100%;
}

.contact-icon {
     width: 56px;
     height: 56px;
     padding: 12px;
     background: rgba(212, 175, 55, 0.1);
     border-radius: var(--radius);
     flex-shrink: 0;
}

.contact-info {
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
     width: 100%;
}

.contact-label {
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: var(--primary);
     font-weight: 600;
}

.contact-value {
     font-size: 1rem;
     font-weight: 700;
     color: var(--text);
     word-break: break-word;
     line-height: 1.4;
}

.contact-desc {
     font-size: 0.875rem;
     color: var(--text-secondary);
     line-height: 1.5;
}

/* Footer */
footer {
     background: var(--bg-secondary);
     border-top: 1px solid var(--border);
     padding: 3rem 2rem;
     margin-top: 8rem;
}

.footer-content {
     max-width: var(--max-width);
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 2rem;
}

.footer-brand {
     display: flex;
     align-items: center;
     gap: 1rem;
}

.footer-brand img {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     border: 2px solid var(--primary);
}

.footer-brand span {
     font-weight: 700;
     color: var(--text);
}

.footer-info {
     text-align: right;
}

.footer-info p {
     margin: 0.25rem 0;
     font-size: 0.9rem;
     color: var(--text-secondary);
}

/* Scroll to Top */
.scroll-top {
     position: fixed;
     bottom: 2rem;
     right: 2rem;
     width: 56px;
     height: 56px;
     background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
     border: none;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: var(--shadow-glow);
     transition: var(--transition);
     z-index: 999;
     opacity: 0;
     visibility: hidden;
}

.scroll-top.visible {
     opacity: 1;
     visibility: visible;
}

.scroll-top:hover {
     transform: translateY(-5px) scale(1.05);
     box-shadow: 0 0 60px rgba(212, 175, 55, 0.6);
}

.scroll-top svg {
     width: 28px;
     height: 28px;
     color: var(--bg);
}

/* Icons */
.icon {
     width: 20px;
     height: 20px;
     object-fit: contain;
     flex-shrink: 0;
}

.btn-primary .icon {
     filter: brightness(0);
}

/* Animations */
@keyframes fadeInLeft {
     from {
          opacity: 0;
          transform: translateX(-30px);
     }

     to {
          opacity: 1;
          transform: translateX(0);
     }
}

@keyframes fadeInRight {
     from {
          opacity: 0;
          transform: translateX(30px);
     }

     to {
          opacity: 1;
          transform: translateX(0);
     }
}

/* Responsive Design */
@media (max-width: 1200px) {
     .hero-section {
          padding: 6rem 2rem 4rem;
     }

     .hero-title {
          font-size: 3.5rem;
     }

     .section-title {
          font-size: 3rem;
     }
}

@media (max-width: 968px) {
     .nav-links {
          display: none;
     }

     .mobile-menu-toggle {
          display: flex;
     }

     .hero-section {
          grid-template-columns: 1fr;
          gap: 3rem;
          padding: 4rem 2rem 3rem;
          min-height: auto;
     }

     .hero-title {
          font-size: 3rem;
     }

     .about-content {
          grid-template-columns: 1fr;
          gap: 3rem;
     }

     .about-stats {
          grid-template-columns: repeat(2, 1fr);
     }

     .areas-grid {
          grid-template-columns: 1fr;
     }

     section {
          margin: 5rem auto;
     }
}

@media (max-width: 640px) {
     .nav-container {
          padding: 1rem 1.5rem;
     }

     .brand-text {
          display: none;
     }

     .hero-title {
          font-size: 2.5rem;
     }

     .hero-subtitle {
          font-size: 1.1rem;
     }

     .hero-cta {
          flex-direction: column;
          gap: 1rem;
     }

     .btn-primary,
     .btn-secondary {
          width: 100%;
          justify-content: center;
     }

     .section-title {
          font-size: 2.5rem;
     }

     .section-subtitle {
          font-size: 1.1rem;
     }

     .about-stats {
          grid-template-columns: 1fr;
     }

     .stat-number {
          font-size: 2.5rem;
     }

     .areas-image img,
     .contact-image img {
          height: 300px;
     }

     .contact-grid {
          grid-template-columns: 1fr;
     }

     .footer-content {
          flex-direction: column;
          text-align: center;
     }

     .footer-info {
          text-align: center;
     }

     .scroll-top {
          bottom: 1.5rem;
          right: 1.5rem;
          width: 50px;
          height: 50px;
     }
}

@media (max-width: 480px) {
     .hero-section {
          padding: 3rem 1.5rem 2rem;
     }

     .hero-title {
          font-size: 2rem;
     }

     .hero-subtitle {
          font-size: 1rem;
     }

     section {
          padding: 0 1.5rem;
          margin: 4rem auto;
     }

     .section-title {
          font-size: 2rem;
     }

     .area-card,
     .contact-card {
          padding: 2rem;
     }

     .btn-primary,
     .btn-secondary {
          padding: 1rem 2rem;
          font-size: 1rem;
     }
}