body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(67, 26, 3, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 50;
}

@media (max-width: 640px) {
    .topbar {
        background: rgba(67, 26, 3, 0.92);
    }
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    transition: color 0.2s;
    font-weight: 500;
}

.topbar-link:hover {
    color: #B45309;
}

.navbar {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 40;
    transition: top 0.3s ease-in-out;
}

@media (max-width: 640px) {
    .navbar {
        background: rgba(255, 255, 255, 0.95);
    }
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: #B45309;
}

.nav-link.active {
    color: #B45309;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #B45309;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-dropdown-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1.25rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.06);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.75rem;
}

.nav-dropdown-item {
    display: block;
    padding: 0.875rem 1.25rem;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.15s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-dropdown-item:first-child {
    border-radius: 0.75rem 0.75rem 0 0;
}

.nav-dropdown-item:last-child {
    border-radius: 0 0 0.75rem 0.75rem;
    border-bottom: none;
}

.nav-dropdown-item:hover {
    background: #f9fafb;
    color: #B45309;
    padding-left: 1.5rem;
}

.nav-cta {
    background: #B45309;
    color: white;
    padding: 0.625rem 1.75rem;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(180, 83, 9, 0.28);
}

.nav-cta:hover {
    background: #8F3A07;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(143, 58, 7, 0.35);
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #FFF8F1 50%, #ffffff 100%);
    padding: 5rem 0;
}

.hero-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        padding: 0 2rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #FDE6D3 0%, #FFF8F1 100%);
    border: 1px solid rgba(180, 83, 9, 0.2);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #8F3A07;
    letter-spacing: 0.05em;
    width: fit-content;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.15;
    color: #111827;
    margin: 0;
}

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

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

.hero-title span {
    color: #B45309;
    display: block;
    margin-top: 0.25rem;
}

.hero-lead {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid rgba(180, 83, 9, 0.15);
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(180, 83, 9, 0.08);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
}

.hero-stat strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #B45309;
    letter-spacing: 0.02em;
}

@media (min-width: 640px) {
    .hero-stat strong {
        font-size: 2rem;
    }
}

.hero-stat span {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.3;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        gap: 1rem;
    }
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.hero-btn--primary {
    background: #B45309;
    color: white;
    box-shadow: 0 4px 14px rgba(180, 83, 9, 0.3);
}

.hero-btn--primary:hover {
    background: #8F3A07;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 83, 9, 0.4);
}

.hero-btn--secondary {
    background: white;
    color: #B45309;
    border: 2px solid #B45309;
}

.hero-btn--secondary:hover {
    background: #FFF8F1;
    transform: translateY(-2px);
}

.hero-images {
    display: grid;
    gap: 1rem;
    grid-template-rows: auto;
}

@media (min-width: 640px) {
    .hero-images {
        grid-template-rows: 1fr auto;
    }
}

.hero-image-main {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(180, 83, 9, 0.15);
    border: 1px solid rgba(180, 83, 9, 0.1);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

@media (min-width: 640px) {
    .hero-image-main img {
        aspect-ratio: 5/4;
    }
}

.hero-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.hero-image-small {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(180, 83, 9, 0.12);
    border: 1px solid rgba(180, 83, 9, 0.1);
    transition: transform 0.3s;
}

.hero-image-small:hover {
    transform: translateY(-4px);
}

.hero-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1;
}

.contact-form-card {
    border-radius: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 241, 0.95));
    border: 1px solid rgba(180, 83, 9, 0.15);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.contact-form-card h3 {
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: 0.06em;
}

.contact-form-card p {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
}

.contact-form {
    margin-top: 2rem;
    display: grid;
    gap: 1.25rem;
}

.contact-form-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .contact-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-field span {
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(17, 24, 39, 0.65);
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid rgba(180, 83, 9, 0.25);
    background: rgba(255, 255, 255, 0.95);
    padding: 0.85rem 1.1rem;
    font-size: 0.95rem;
    color: #1f2937;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

.contact-field textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #B45309;
    box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.18);
}

.contact-field--full {
    grid-column: 1 / -1;
}

.contact-form-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.9rem 2.2rem;
    background: #B45309;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 18px 32px rgba(180, 83, 9, 0.32);
    margin-top: 0.5rem;
}

.contact-form-button:hover {
    background: #8F3A07;
    transform: translateY(-2px);
}

.contact-form-note {
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(17, 24, 39, 0.56);
    margin-top: 0.75rem;
}

.site-footer {
    position: relative;
    background: radial-gradient(circle at top left, rgba(180, 83, 9, 0.28), rgba(15, 23, 42, 0.95));
    color: rgba(255, 255, 255, 0.86);
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(12, 19, 38, 0.9), rgba(67, 26, 3, 0.85));
    opacity: 0.92;
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4.5rem 1.5rem 3rem;
}

@media (min-width: 1024px) {
    .site-footer__inner {
        padding: 5.5rem 2rem 3.5rem;
    }
}

.footer-top {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: center;
        gap: 3rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    display: none;
}

.footer-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.footer-brand-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 440px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.2s, background 0.2s;
}

.footer-social-link:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.18);
}

.footer-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-cta {
    border-radius: 2rem;
    padding: 2.5rem;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 45px rgba(10, 15, 30, 0.4);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.footer-cta p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.95rem 2.5rem;
    background: #B45309;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 18px 35px rgba(180, 83, 9, 0.35);
    align-self: flex-start;
}

.footer-cta-btn:hover {
    background: #8F3A07;
    transform: translateY(-3px);
}

.footer-grid {
    margin-top: 3.5rem;
    display: grid;
    gap: 2.5rem;
}

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

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

.footer-column h4 {
    font-size: 0.9rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.25rem;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-link {
    color: inherit;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-link:hover {
    color: #F8C29F;
    padding-left: 0.35rem;
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.4rem;
}

.footer-contact a {
    color: #FDE6D3;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #F8C29F;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #F8C29F;
}

.expertise-card {
    position: relative;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,250,243,0.96));
}

.expertise-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(180, 83, 9, 0.12);
    pointer-events: none;
    transition: opacity 0.3s;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 60px rgba(15, 23, 42, 0.12);
}

.expertise-card:hover::after {
    opacity: 0;
}

.expertise-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(180, 83, 9, 0.08);
}

.expertise-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.expertise-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #4b5563;
}

.services {
    padding: 5rem 1rem;
    background: #f9fafb;
}

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

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

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .services-header {
        margin-bottom: 4rem;
    }
}

.services-title {
    font-size: 2.25rem;
    line-height: 1.1;
    font-weight: 300;
    color: #111827;
    margin-bottom: 1.5rem;
}

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

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

.services-intro {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .services-intro {
        font-size: 1.0625rem;
    }
}

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

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

.service-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: block;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-content {
    padding: 1.75rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 1.25rem;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-list li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.5;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.875rem;
    width: 6px;
    height: 6px;
    background: #B45309;
    border-radius: 50%;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #111827;
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    transition: all 0.2s;
}

.service-btn:hover {
    background: #B45309;
    gap: 0.75rem;
}

.service-btn-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s;
}

.service-btn:hover .service-btn-icon {
    transform: translateX(4px);
}

.feature {
    padding: 5rem 1rem;
    background: #ffffff;
}

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

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

.feature-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .feature-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.feature-content {
    order: 2;
}

@media (min-width: 1024px) {
    .feature-content {
        order: 1;
    }
}

.feature-image {
    order: 1;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    max-height: 520px;
}

@media (min-width: 1024px) {
    .feature-image {
        order: 2;
    }
}

.feature-image img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
}

.feature-title {
    font-size: 2.25rem;
    line-height: 1.1;
    font-weight: 300;
    color: #111827;
    margin-bottom: 1rem;
}

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

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

.feature-title-accent {
    font-weight: 800;
    color: #B45309;
}

.feature-subtitle {
    font-size: 1.125rem;
    line-height: 1.4;
    color: #B45309;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.feature-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 1.25rem;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: #B45309;
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(180, 83, 9, 0.28);
    margin-top: 1rem;
}

.feature-btn:hover {
    background: #8F3A07;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(143, 58, 7, 0.35);
}

.testimonial-card {
    border-radius: 1.5rem;
    padding: 1.75rem;
    backdrop-filter: blur(6px);
    transition: transform 0.3s, background 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.18);
}

.faq-item {
    border-radius: 1.25rem;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background: rgba(255, 255, 255, 0.9);
    padding: 1.25rem 1.5rem;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
}

.faq-item summary span {
    flex: 1;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #B45309;
    transition: transform 0.3s;
}

.faq-item[open] {
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
    border-color: rgba(180, 83, 9, 0.25);
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

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

.partners-scroll {
    animation: scroll 30s linear infinite;
}

.partners-scroll:hover {
    animation-play-state: paused;
}

.main-offset {
    padding-top: 120px;
}

.h-500 {
    height: 500px;
}

@media (min-width: 1024px) {
    .lg\:h-500 {
        height: 500px;
    }
}

.sticky-filter {
    top: 130px;
}

.scroll-offset {
    scroll-margin-top: 190px;
}

#mobile-menu {
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.elfsight-app-3dcea8e8-cba1-452e-977f-949fce013ed8,
.elfsight-app-7a132b29-cf55-42c5-ac06-d3eff8e7ef64 {
    max-width: 100%;
    overflow-x: hidden;
}

.elfsight-app-3dcea8e8-cba1-452e-977f-949fce013ed8 > *,
.elfsight-app-7a132b29-cf55-42c5-ac06-d3eff8e7ef64 > * {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 640px) {
    .es-carousel-arrow-control,
    .ArrowControl__ArrowControlContainer-sc-c6b1dfb6-0 {
        display: none;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .es-carousel-arrow-control,
    .ArrowControl__ArrowControlContainer-sc-c6b1dfb6-0 {
        width: 28px;
        height: 28px;
    }
}

.contact-bg {
    background-image: url('images/IMG_0012.webp');
}
