:root {
    --primary-color: #000000;
    --secondary-color: #D4AF37;
    --accent-color: #333333;
    --text-color: #E0E0E0;
    --light-text: #FFFFFF;
    --dark-text: #111111;
    --section-padding: 4rem 1.5rem;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="10" height="10" x="0" y="0" fill="%23333"/></svg>');
    background-size: 20px 20px;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
header {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.logo span {
    color: var(--light-text);
    font-weight: 300;
}

.tagline {
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    line-height: 1.2;
}

.hero h1 span {
    color: var(--secondary-color);
    display: block;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--secondary-color);
    color: var(--dark-text);
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid var(--secondary-color);
    margin: 0.5rem;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.secondary-button {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.secondary-button:hover {
    background-color: var(--secondary-color);
    color: var(--dark-text);
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

section:nth-child(even) {
    background-color: rgba(17, 17, 17, 0.7);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light-text);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: rgba(51, 51, 51, 0.5);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

/* FAQ */
.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 1.5rem;
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: #111111;
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--secondary-color);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.box-foot-btn{
    text-align: center; 
    margin-top: 2rem; 
    font-style: italic;
}

.companionship-info {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    margin-bottom: 1.5rem;
}

.companionship-list {
    list-style-type: none;
    margin-bottom: 2rem;
    padding-left: 0;
}

.companionship-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.disclaimer {
    font-weight: 600;
    color: var(--secondary-color); /* Replace with your actual color if needed */
    text-align: center;
    margin-top: 2rem;
}

.companion-client-section .companion-client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.companion-client-section .section-title.left {
    text-align: left;
}

.companion-client-section .process-list {
    list-style-type: none;
    margin-top: 1rem;
    padding-left: 0;
}

.companion-client-section .process-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.companion-client-section .note-text {
    font-style: italic;
    margin-top: 1.5rem;
}

.companion-client-section .cta-wrapper {
    margin-top: 2rem;
}

.hero-banner {
    text-align: center;
    padding: 5rem 1.5rem;
}

.hero-banner .banner-title {
    margin-bottom: 1.5rem;
}

.hero-banner .banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-banner .cta-wrapper {
    display: inline-block;
}

.cta-button.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.hero-banner .entry-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}
