:root {
    --primary: #a795a4;
    --secondary: #dbd4ce;
    --accent: #7a6878;
    --deep: #5c4a5a;
    --warm: #c4b5a8;
    --cream: #f5f0ec;
    --rose: #c9b8c6;
    --dark: #2d2233;
    --charcoal: #3a3040;
    --text: #2d2233;
    --text-light: #6b5f6a;
    --white: #ffffff;
    --gold: #b8a088;
    --soft-white: #faf8f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--soft-white);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--cream);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    text-align: center;
}
.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--secondary);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}
.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(219, 212, 206, 0.2);
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
}
.loader-bar::after {
    content: '';
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    animation: loadBar 2s ease forwards;
}

@keyframes loadBar {
    to { width: 100%; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}
.nav.scrolled {
    background: rgba(250, 248, 246, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 30px rgba(45, 34, 51, 0.08);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.nav.scrolled .nav-logo {
    color: var(--dark);
}
.nav-logo span {
    color: var(--primary);
}
.nav.scrolled .nav-logo span {
    color: var(--primary);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}
.nav.scrolled .nav-links a {
    color: var(--text-light);
}
.nav-links a:hover {
    color: var(--secondary);
}
.nav.scrolled .nav-links a:hover {
    color: var(--accent);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--secondary);
    transition: width 0.3s ease;
}
.nav.scrolled .nav-links a::after {
    background: var(--primary);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-cta {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.5);
    padding: 10px 28px;
    border-radius: 50px;
    color: var(--white) !important;
    font-size: 0.8rem !important;
    letter-spacing: 2px !important;
    transition: all 0.3s ease !important;
}
.nav.scrolled .nav-cta {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}
.nav-cta:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}
.nav.scrolled .nav-cta:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
}
.nav-cta::after {
    display: none !important;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}
.nav.scrolled .hamburger span {
    background: var(--dark);
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu-links {
    list-style: none;
    text-align: center;
}
.mobile-menu-links li {
    margin: 20px 0;
}
.mobile-menu-links a {
    text-decoration: none;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    transition: color 0.3s ease;
}
.mobile-menu-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 50%, var(--accent) 100%);
}
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(circle at 20% 50%, var(--primary) 1px, transparent 1px),
                        radial-gradient(circle at 80% 20%, var(--secondary) 1px, transparent 1px),
                        radial-gradient(circle at 60% 80%, var(--primary) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 120px 120px;
}
.hero-float-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: floatSlow 20s ease-in-out infinite;
}
.hero-float-element:nth-child(1) {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}
.hero-float-element:nth-child(2) {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}
.hero-float-element:nth-child(3) {
    width: 300px;
    height: 300px;
    background: var(--rose);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}
.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(167, 149, 164, 0.2);
    border: 1px solid rgba(167, 149, 164, 0.3);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}
.hero h1 .highlight {
    color: var(--primary);
    font-style: italic;
}
.hero p {
    font-size: 1.15rem;
    color: rgba(219, 212, 206, 0.8);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.btn-primary:hover::before {
    left: 100%;
}
.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(167, 149, 164, 0.4);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1.5px solid rgba(219, 212, 206, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
}
.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(219, 212, 206, 0.5);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    animation: bounce 2s ease-in-out infinite;
}
.hero-scroll .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(219, 212, 206, 0.5), transparent);
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Styles */
.section {
    padding: 120px 60px;
    position: relative;
}
.section-container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 80px;
}
.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(167, 149, 164, 0.1);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}
.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 20px auto 0;
}

/* About / Team Section */
.about-section {
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image-main {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image-main i {
    font-size: 6rem;
    color: rgba(255,255,255,0.2);
}
.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--secondary);
    border-radius: 20px;
    z-index: -1;
}
.about-stats {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(45, 34, 51, 0.1);
    z-index: 2;
}
.about-stats h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
}
.about-stats p {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.2;
}
.about-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 1rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(167, 149, 164, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.about-feature span {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

/* VAs Section */
.vas-section {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.vas-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(167, 149, 164, 0.08), transparent);
    border-radius: 50%;
}
.vas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.va-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.va-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.va-card:hover::before {
    transform: scaleX(1);
}
.va-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(45, 34, 51, 0.12);
}
.va-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(167, 149, 164, 0.1), rgba(219, 212, 206, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}
.va-card:hover .va-card-icon {
    background: var(--primary);
    color: var(--white);
}
.va-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
}
.va-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Why Choose Section */
.why-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.why-section .section-title {
    color: var(--white);
}
.why-section .section-subtitle {
    color: rgba(219, 212, 206, 0.7);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(167, 149, 164, 0.15);
    padding: 45px 40px;
    border-radius: 20px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(167, 149, 164, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.why-card:hover::before {
    opacity: 1;
}
.why-card:hover {
    border-color: rgba(167, 149, 164, 0.3);
    transform: translateY(-5px);
}
.why-card-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: rgba(167, 149, 164, 0.2);
    font-weight: 700;
    margin-bottom: 15px;
}
.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 15px;
}
.why-card p {
    color: rgba(219, 212, 206, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Services Section */
.services-section {
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.service-card {
    padding: 50px 45px;
    border-radius: 20px;
    border: 1px solid rgba(167, 149, 164, 0.15);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    background: var(--soft-white);
}
.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(167, 149, 164, 0.15);
    transform: translateY(-5px);
}
.service-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    flex-shrink: 0;
}
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
}
.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.service-tag {
    padding: 5px 14px;
    background: rgba(167, 149, 164, 0.08);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 500;
}

/* Careers Section */
.careers-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--soft-white) 100%);
    position: relative;
}
.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.careers-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.2;
}
.careers-text p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 30px;
}
.careers-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.career-benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.career-benefit:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(167, 149, 164, 0.1);
}
.career-benefit-icon {
    width: 45px;
    height: 45px;
    background: rgba(167, 149, 164, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.career-benefit h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 5px;
}
.career-benefit p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
}
.contact-info > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(167, 149, 164, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-detail h4 {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 3px;
}
.contact-detail p {
    color: var(--dark);
    font-weight: 500;
}
.contact-form {
    background: var(--soft-white);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(167, 149, 164, 0.1);
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    background: var(--white);
    border: 1.5px solid rgba(167, 149, 164, 0.2);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    transition: all 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(167, 149, 164, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.form-submit:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(167, 149, 164, 0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(167, 149, 164, 0.1), transparent 50%);
}
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}
.cta-content p {
    color: rgba(219, 212, 206, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 80px 60px 40px;
    border-top: 1px solid rgba(167, 149, 164, 0.1);
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}
.footer-brand p {
    color: rgba(219, 212, 206, 0.5);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 25px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(167, 149, 164, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}
.footer-col h4 {
    font-size: 0.8rem;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.footer-col a {
    display: block;
    color: rgba(219, 212, 206, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}
.footer-col a:hover {
    color: var(--primary);
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(167, 149, 164, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    color: rgba(219, 212, 206, 0.3);
    font-size: 0.8rem;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Book Now Page Styles */
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 34, 51, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.page-overlay.active {
    opacity: 1;
    visibility: visible;
}

.slide-page {
    position: fixed;
    top: 0;
    right: -100%;
    width: 600px;
    max-width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 5001;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(45, 34, 51, 0.2);
}
.slide-page.active {
    right: 0;
}
.slide-page-header {
    padding: 40px 50px 30px;
    border-bottom: 1px solid rgba(167, 149, 164, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 2;
}
.slide-page-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
}
.slide-page-header p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 5px;
}
.close-btn {
    width: 45px;
    height: 45px;
    background: rgba(167, 149, 164, 0.1);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.close-btn:hover {
    background: var(--primary);
    color: var(--white);
}
.slide-page-body {
    padding: 40px 50px 50px;
}
.slide-form-group {
    margin-bottom: 28px;
}
.slide-form-group label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}
.slide-form-group label .required {
    color: #e07070;
}
.slide-form-group input,
.slide-form-group textarea,
.slide-form-group select {
    width: 100%;
    padding: 15px 20px;
    background: var(--soft-white);
    border: 1.5px solid rgba(167, 149, 164, 0.15);
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    transition: all 0.3s ease;
    outline: none;
}
.slide-form-group input:focus,
.slide-form-group textarea:focus,
.slide-form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(167, 149, 164, 0.08);
    background: var(--white);
}
.slide-form-group textarea {
    resize: vertical;
    min-height: 130px;
}
.slide-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.slide-form-submit {
    width: 100%;
    padding: 17px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.slide-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(167, 149, 164, 0.35);
}
.slide-form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
}
.slide-form-note i {
    color: var(--primary);
    margin-right: 5px;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.time-slot {
    padding: 12px;
    text-align: center;
    border: 1.5px solid rgba(167, 149, 164, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    color: var(--text-light);
    background: var(--soft-white);
    font-weight: 500;
}
.time-slot:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.time-slot.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 60px 40px;
}
.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}
.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
}
.success-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}
.success-message p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Apply Page Specific */
.apply-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}
.apply-step {
    display: flex;
    align-items: center;
    gap: 10px;
}
.apply-step-number {
    width: 30px;
    height: 30px;
    background: rgba(167, 149, 164, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s ease;
}
.apply-step.active .apply-step-number {
    background: var(--primary);
    color: var(--white);
}
.apply-step-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}
.apply-step.active .apply-step-label {
    color: var(--dark);
}
.apply-step-line {
    width: 40px;
    height: 2px;
    background: rgba(167, 149, 164, 0.15);
    align-self: center;
}

/* File Upload */
.file-upload {
    border: 2px dashed rgba(167, 149, 164, 0.25);
    border-radius: 14px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--soft-white);
}
.file-upload:hover {
    border-color: var(--primary);
    background: rgba(167, 149, 164, 0.03);
}
.file-upload i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}
.file-upload p {
    font-size: 0.85rem;
    color: var(--text-light);
}
.file-upload span {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}
.file-upload input {
    display: none;
}
.file-name {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .section {
        padding: 80px 40px;
    }
    .nav-container {
        padding: 0 40px;
    }
    .about-grid,
    .careers-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .vas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .section {
        padding: 60px 20px;
    }
    .nav-container {
        padding: 0 20px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .vas-grid {
        grid-template-columns: 1fr;
    }
    .why-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .about-content h2,
    .careers-text h2 {
        font-size: 2.2rem;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .form-row,
    .slide-form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .slide-page {
        width: 100%;
    }
    .slide-page-header,
    .slide-page-body {
        padding-left: 25px;
        padding-right: 25px;
    }
    .contact-form {
        padding: 30px 25px;
    }
    .cta-section {
        padding: 60px 20px;
    }
    .cta-content h2 {
        font-size: 2.2rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
    .apply-steps {
        flex-wrap: wrap;
        gap: 15px;
    }
    .apply-step-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .about-content h2,
    .careers-text h2 {
        font-size: 1.8rem;
    }
}

/* Custom cursor effect */
.cursor-glow {
    position: fixed;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(167, 149, 164, 0.06), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--dark);
    color: var(--secondary);
    padding: 18px 30px;
    border-radius: 14px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 50px rgba(45, 34, 51, 0.3);
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
}
.toast i {
    color: var(--primary);
    font-size: 1.2rem;
}