/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C4A052;
    --gold-light: #d4b062;
    --gold-lighter: #e4c072;
    --dark: #0a0a0a;
    --dark-2: #1a1a1a;
    --dark-3: #252525;
    --gray: #666;
    --gray-light: #999;
    --white: #ffffff;
    --text-light: #e5e5e5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--gold);
    color: var(--dark);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-icon {
    width: 64px;
    height: 64px;
    color: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.loader-content p {
    margin-top: 1rem;
    color: var(--gold);
    font-size: 1.125rem;
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196, 160, 82, 0.2);
    transition: transform 0.3s ease;
}

#main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--dark-2);
    border-top: 1px solid rgba(196, 160, 82, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--gold);
    background: rgba(196, 160, 82, 0.1);
}

/* Buttons */
.gold-button {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark);
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 160, 82, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.gold-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196, 160, 82, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-lighter) 100%);
}

.gold-button:active {
    transform: translateY(0);
}

.gold-button.full-width {
    width: 100%;
}

.outline-button {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 32px;
    border-radius: 8px;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.outline-button:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196, 160, 82, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 880px;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
}





/* Desktop / laptop */
@media (min-width: 1024px) and (max-width: 1399px) {
  .hero-section {
    min-height: 800px;
    padding-top: 80px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-section {
    min-height: 700px;          /* slightly shorter on tablets to hint at content below */
    padding-top: 72px;
  }
}
/* Mobile phones */
@media (max-width: 520px) {
  .hero-section {
    /* use a smaller hero on phones so users see below-the-fold content quickly */
    min-height: 940px;          /* fallback */
    
  }
  
    .hero-content {
        align-items: start !important;
        padding-top: 50px;
    
    }
}

/* Mobile phones */
@media (max-width: 375px) {
  .hero-section {
    /* use a smaller hero on phones so users see below-the-fold content quickly */
    min-height: 1150px;          /* fallback */
  }
  .hero-content {
    align-items: start !important;
    padding-top: 50px;

  }
}

/* If your hero contains a full-bleed background image, ensure it covers cleanly */
.hero-section .bg-image, .hero-section .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    padding-bottom: 120px;
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .hero-content {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    padding-bottom: 120px;
    min-width: 1170px;
}
}

.hero-text {
    max-width: 768px;
}

.hero-slide {
    display: none;
    animation: fadeIn 0.7s ease;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    font-size: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: #d1d1d1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.slider-button {
    background: rgba(196, 160, 82, 0.2);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(196, 160, 82, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-button:hover:not(:disabled) {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.1);
}

.slider-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 48px;
    height: 4px;
    border-radius: 2px;
    background: var(--gray);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--gold);
}

/* Stats Banner */
.stats-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(196, 160, 82, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(10, 10, 10, 0.8);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    color: var(--gray-light);
    max-width: 48rem;
    margin: 0 auto;
}

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

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(196, 160, 82, 0.2);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(196, 160, 82, 0.2);
}

.service-icon {
    background: rgba(196, 160, 82, 0.1);
    width: 64px;
    height: 64px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--gold);
    transform: rotate(5deg) scale(1.1);
}

.service-icon svg {
    color: var(--gold);
}

.service-card:hover .service-icon svg {
    color: var(--dark);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

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

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

.service-link:hover svg {
    transform: translateX(4px);
}

/* Results Section */
.results-section {
    background: var(--dark-2);
}

.results-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .results-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.results-description {
    color: var(--gray-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.results-list {
    list-style: none;
    margin-bottom: 2rem;
}

.results-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.results-list svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.results-list span {
    color: #d1d1d1;
}

.results-image {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

@media (min-width: 1024px) {
    .results-image {
        height: 500px;
    }
}

.results-image:hover {
    transform: scale(1.02);
}

.results-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.results-image:hover img {
    transform: scale(1.05);
}

/* Attorneys Section */
.attorneys-section {
    background: var(--dark);
}

.attorneys-slider-wrapper {
    position: relative;
}

.attorneys-slider {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .attorneys-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .attorneys-slider {
        grid-template-columns: repeat(4, 1fr);
    }
}

.attorney-card {
    background: var(--dark-2);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(196, 160, 82, 0.2);
    transition: all 0.4s ease;
}

.attorney-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(196, 160, 82, 0.2);
}

.attorney-image {
    position: relative;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.attorney-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.attorney-card:hover .attorney-image img {
    transform: scale(1.05);
}

.attorney-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.attorney-title {
    color: var(--gold);
}

/* Case Results Section */
.case-results-section {
    background: var(--dark-2);
}

.case-results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.case-results-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .case-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .case-results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.case-card {
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(196, 160, 82, 0.2);
    transition: all 0.4s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(196, 160, 82, 0.2);
}

.case-image {
    position: relative;
    height: 256px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--dark);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.case-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.case-card p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* Consultation Section */
.consultation-section {
    background: var(--dark);
}

.consultation-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .consultation-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.consultation-description {
    color: var(--gray-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    background: rgba(196, 160, 82, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: var(--gold);
}

.contact-label {
    font-size: 0.875rem;
    color: var(--gray-light);
}

.contact-value {
    font-size: 1.125rem;
}

.consultation-form {
    background: var(--dark-2);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(196, 160, 82, 0.2);
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--dark);
    border: 1px solid rgba(196, 160, 82, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196, 160, 82, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group textarea {
    resize: vertical;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--dark-2);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(196, 160, 82, 0.2);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(196, 160, 82, 0.2);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating svg {
    color: var(--gold);
}

.testimonial-text {
    color: #d1d1d1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(196, 160, 82, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 600;
}

.author-name {
    font-weight: 600;
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-light);
}

/* News Section */
.news-section {
    background: var(--dark);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.news-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: var(--dark-2);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(196, 160, 82, 0.2);
    transition: all 0.4s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(196, 160, 82, 0.2);
}

.news-image {
    position: relative;
    height: 256px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.news-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--dark);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 1;
}

.news-date {
    font-size: 0.875rem;
    color: var(--gray-light);
    margin-bottom: 0.75rem;
}

.news-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.news-link {
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

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

.news-link svg {
    transition: transform 0.3s ease;
}

.news-link:hover svg {
    transform: translateX(4px);
}

/* Footer */
footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(196, 160, 82, 0.2);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column p {
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(196, 160, 82, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(196, 160, 82, 0.2);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 160, 82, 0.3);
}

.footer-column h3 {
    font-size: 1.125rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--dark);
    border: 1px solid rgba(196, 160, 82, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 160, 82, 0.2);
    color: var(--gray-light);
    font-size: 0.875rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* Page Header */
.page-header {
    padding: 10rem 0 5rem;
    background: var(--dark-2);
    text-align: center;
    border-bottom: 1px solid rgba(196, 160, 82, 0.2);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .page-header h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .page-header h1 {
        font-size: 3.75rem;
    }
}

.page-header p {
    color: var(--gray-light);
    font-size: 1.125rem;
    max-width: 48rem;
    margin: 0 auto;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-8 {
    margin-top: 2rem;
}
/* Desktop Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  flex-direction: column;
  z-index: 1000;
}

.nav-dropdown .dropdown-content a {
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  color: #333;
}

.nav-dropdown .dropdown-content a:hover {
  background: #f2f2f2;
}

.nav-dropdown:hover .dropdown-content {
  display: flex;
}


.service-icon svg{
    width: 32px;
    height: 32px;
}