:root {
    --primary-color: #c9aa7c;
    --secondary-color: #1a1a1a;
    --accent-color: #e74c3c;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --overlay-color: rgba(26, 26, 26, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Remove underlines from all links */
a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.video-background.active {
    opacity: 1;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    z-index: -1;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

.hero-logo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(201, 170, 124, 0.3);
    transition: all 0.3s ease;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.hero-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px rgba(201, 170, 124, 0.6);
    animation-play-state: paused;
}

/* Logo animations */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes logoGlow {
    0% {
        box-shadow: 0 0 20px rgba(201, 170, 124, 0.3);
        border-color: var(--primary-color);
    }
    100% {
        box-shadow: 0 0 30px rgba(201, 170, 124, 0.5);
        border-color: rgba(201, 170, 124, 0.8);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.btn-custom {
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    border: 2px solid #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.btn-custom:hover {
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    color: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.content-section {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.service-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.service-card:hover p {
    opacity: 1;
}

.quote-form {
    background: rgba(40, 40, 40, 0.9);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.quote-form .form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.quote-form .form-control {
    background: rgba(60, 60, 60, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.quote-form .form-control:focus {
    background: rgba(70, 70, 70, 0.9);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(201, 170, 124, 0.25);
    color: var(--text-light);
}

.quote-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.quote-form select.form-control option {
    background: #2d2d2d;
    color: var(--text-light);
}

.contact-info {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 0;
}

.contact-item {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.social-links {
    text-align: center;
    margin-top: 3rem;
}

.social-link {
    color: #ffffff;
    font-size: 2rem;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #f8f9fa;
    transform: scale(1.2);
}

.navbar-custom {
    background: rgba(26, 26, 26, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff !important;
}

.navbar-brand:hover {
    color: #f8f9fa !important;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.footer-section {
    background: var(--secondary-color);
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section p:last-child {
    margin-bottom: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    max-width: 80px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

@media (max-width: 767px) {
    .footer-logo {
        margin-bottom: 1rem;
    }
}

/* Testimonials Section */
.testimonial-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(201, 170, 124, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-author h5 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}