:root {
    --maroon: #8B1538;
    --maroon-dark: #6B0F2B;
    --gold: #C49A3C;
    --gold-light: #D4AA4C;
    --cream: #F5F0E8;
    --white: #FFFFFF;
    --grey: #666666;
    --grey-dark: #333333;
    --grey-light: #999999;
    --black: #111111;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--grey-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--maroon);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, background 0.3s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(2);
    background: rgba(139, 21, 56, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 40px rgba(0,0,0,0.08);
    padding: 1rem 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--maroon);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey);
    margin-top: 0.15rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--grey-dark);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--maroon);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--maroon);
}

.nav-cta {
    background: var(--maroon);
    color: var(--white) !important;
    padding: 0.75rem 1.75rem;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--maroon-dark);
    transform: translateY(-2px);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

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

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    color: var(--grey-dark);
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--cream);
    color: var(--maroon);
}

.dropdown-menu a::after {
    display: none;
}

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

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--maroon);
    transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--grey-dark);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cream);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--maroon);
    padding-left: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--cream) 100%);
    overflow: hidden;
    padding: 8rem 4rem 4rem;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B1538' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-deco {
    position: absolute;
    border-radius: 50%;
    background: var(--maroon);
    opacity: 0.05;
}

.hero-deco-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.hero-deco-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    background: var(--gold);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    color: var(--maroon);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--maroon), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--maroon);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--maroon-dark);
    transition: var(--transition);
    z-index: 0;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.3);
}

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

.btn-secondary:hover {
    background: var(--maroon);
    color: var(--white);
    transform: translateY(-3px);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title em {
    font-style: italic;
    color: var(--maroon);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--grey);
    line-height: 1.8;
}

/* Quote Section */
.quote-section {
    padding: 8rem 4rem;
    background: var(--maroon);
    text-align: center;
}

.quote-section blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
}

.quote-section blockquote::before {
    content: '"';
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: -2rem;
    left: -2rem;
    font-family: 'Playfair Display', serif;
}

.quote-section cite {
    display: block;
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--gold-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Services Preview */
.services-preview {
    padding: 8rem 4rem;
    background: var(--white);
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-preview-card {
    background: var(--cream);
    padding: 3rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    color: var(--grey-dark);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--maroon);
    transition: var(--transition);
}

.service-preview-card:hover::before {
    height: 100%;
}

.service-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(139, 21, 56, 0.1);
}

.service-preview-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-preview-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--maroon);
    margin-bottom: 1rem;
}

.service-preview-card p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-preview-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--maroon);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-preview-link .arrow {
    transition: var(--transition);
}

.service-preview-card:hover .arrow {
    transform: translateX(5px);
}

/* About Preview */
.about-preview {
    padding: 8rem 4rem;
    background: var(--cream);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-preview-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.about-image-frame {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: 0;
}

.about-preview-content p {
    margin-bottom: 1.5rem;
    color: var(--grey);
    line-height: 1.8;
}

/* Five Circles */
.five-circles {
    padding: 8rem 4rem;
    background: var(--white);
}

.circles-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.circle-item {
    text-align: center;
    padding: 2rem;
    min-width: 160px;
}

.circle-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--maroon);
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--maroon);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.circle-item:hover .circle-num {
    background: var(--maroon);
    color: var(--white);
}

.circle-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.circle-item p {
    font-size: 0.9rem;
    color: var(--grey);
}

.circles-description {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
    color: var(--grey);
    line-height: 1.9;
}

/* Partners Strip */
.partners-strip {
    padding: 6rem 4rem;
    background: var(--cream);
    overflow: hidden;
}

.partners-logos-scroll {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.partners-logos {
    display: flex;
    gap: 4rem;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

.partner-logo-item {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--grey-light);
    white-space: nowrap;
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo-item:hover {
    opacity: 1;
    color: var(--maroon);
}

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

/* CTA Section */
.cta-section {
    padding: 8rem 4rem;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content .section-eyebrow {
    color: var(--gold-light);
}

.cta-content .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--maroon);
}

.cta-content .btn-primary::before {
    background: var(--cream);
}

.cta-content .btn-primary:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 5rem 4rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-brand .logo-text span {
    color: var(--grey-light);
}

.footer-brand p {
    color: var(--grey-light);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--grey-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--grey-light);
    font-size: 0.85rem;
}

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

.footer-social a {
    color: var(--grey-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

/* Page Header */
.page-header {
    padding: 10rem 4rem 6rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B1538' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page */
.about-page {
    padding: 6rem 4rem;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-content p {
    color: var(--grey);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cream);
}

.stat-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--maroon);
    margin-bottom: 0.3rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--grey);
    margin: 0;
}

/* Values */
.values {
    padding: 8rem 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid rgba(139, 21, 56, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.value-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--maroon);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Service Detail */
.service-detail {
    padding: 6rem 4rem;
    background: var(--white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.service-detail-content h2 em {
    font-style: italic;
    color: var(--maroon);
}

.service-detail-content p {
    color: var(--grey);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream);
    color: var(--grey);
    line-height: 1.7;
}

.service-features li strong {
    color: var(--black);
    display: block;
    margin-bottom: 0.3rem;
}

.service-detail-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.service-sidebar-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid var(--gold);
}

.service-sidebar-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--maroon);
    margin-bottom: 1rem;
}

.service-sidebar-card p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-page {
    padding: 6rem 4rem;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.contact-detail p, .contact-detail a {
    color: var(--grey);
    text-decoration: none;
    line-height: 1.8;
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--maroon);
}

.contact-form {
    background: var(--cream);
    padding: 3rem;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(139, 21, 56, 0.2);
    border-radius: 4px;
    background: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--grey-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Partners Page */
.partners-page {
    padding: 6rem 4rem;
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.partner-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(139, 21, 56, 0.1);
}

.partner-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.partner-card p {
    font-size: 0.9rem;
    color: var(--grey);
}

.partners-highlight {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    padding: 4rem;
    border-radius: 4px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.partners-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.partners-highlight .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.partners-highlight p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .about-grid,
    .about-preview-grid,
    .contact-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-detail-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
    }

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

    .hero {
        padding: 7rem 2rem 4rem;
    }

    .services-preview,
    .about-preview,
    .five-circles,
    .values,
    .service-detail,
    .contact-page,
    .partners-page,
    .about-page {
        padding: 4rem 2rem;
    }

    .page-header {
        padding: 8rem 2rem 4rem;
    }

    .footer {
        padding: 3rem 2rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .circles-container {
        gap: 1rem;
    }

    .circle-item {
        min-width: 130px;
        padding: 1.5rem 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .partners-highlight {
        padding: 2.5rem 1.5rem;
    }

    .partners-highlight .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .btn-primary, .btn-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 0.85rem;
    }

    .quote-section blockquote {
        font-size: 1.3rem;
    }

    .quote-section blockquote::before {
        font-size: 4rem;
        top: -1rem;
        left: -1rem;
    }

    .service-preview-card {
        padding: 2rem 1.5rem;
    }

    .value-card {
        padding: 2rem;
    }

    .partner-card {
        padding: 2rem 1.5rem;
    }
}
