:root {
    --primary-gold: #c5a059;
    --deep-maroon: #630000;
    --matte-black: #0a0a0a;
    --soft-white: #f8f9fa;
    --glass: rgba(255, 255, 255, 0.03);
    --gold-glow: rgba(197, 160, 89, 0.15);
}

body {
    background-color: var(--matte-black);
    color: var(--soft-white);
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: var(--deep-maroon);
    border-radius: 10px;
}

/* Hero Section */
.cover-photo {
    height: 60vh;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.2), var(--matte-black)), url('../images/cover-home-page.webp');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(99, 0, 0, 0.3);
}

.hero-subheading {
    letter-spacing: 6px;
    color: var(--primary-gold);
}

.profile-wrapper {
    margin-top: -120px;
    z-index: 10;
}

.profile-img {
    width: 240px;
    height: 240px;
    border: 8px solid var(--matte-black);
    border-radius: 50%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.profile-img:hover {
    transform: scale(1.03) rotate(2deg);
}

/* Form Styling */
.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
    color: white !important;
    border-radius: 2px;
    padding: 12px;
    margin-bottom: 20px;
    transition: 0.4s;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px var(--gold-glow);
    outline: none;
}

.form-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 8px;
    font-weight: 700;
    display: block;
}

/* Buttons */
.btn-premium {
    background: linear-gradient(45deg, var(--deep-maroon), #800000) !important;
    color: white !important;
    border: none !important;
    padding: 14px 45px !important;
    font-size: 0.8rem !important;
    letter-spacing: 3px !important;
    font-weight: 700 !important;
    border-radius: 2px !important;
    transition: 0.5s !important;
    box-shadow: 0 10px 30px rgba(99, 0, 0, 0.3) !important;
    text-transform: uppercase !important;
}

.btn-premium:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(99, 0, 0, 0.5) !important;
    color: white !important;
    background: linear-gradient(45deg, #800000, var(--deep-maroon)) !important;
}

.btn-review-all {
    letter-spacing: 2px;
    font-size: 0.7rem;
}

/* Section Styling */
.section-title {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--deep-maroon);
}

.section-title.text-start::after {
    left: 30px;
    transform: none;
}

.section-subtitle {
    letter-spacing: 4px;
}

.service-card {
    background: var(--glass);
    padding: 50px 35px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: rgba(197, 160, 89, 0.03);
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--gold-glow);
}

.service-card i {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    display: block;
    text-shadow: 0 0 15px var(--gold-glow);
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--deep-maroon);
}

.video-box {
    background: #000;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
}

.video-box:hover {
    border-color: var(--deep-maroon);
}

.philosophy-bg {
    background: #080808;
}

.philosophy-quote {
    max-width: 600px;
}

.reviews-bg {
    background: rgba(197, 160, 89, 0.01);
    border-top: 1px solid rgba(197, 160, 89, 0.05);
    border-bottom: 1px solid rgba(197, 160, 89, 0.05);
}

.review-name {
    letter-spacing: 1px;
}

.review-role {
    color: var(--primary-gold);
    font-size: 0.65rem;
    letter-spacing: 1px;
}

/* Social Icons & Alignment Fix */
.social-icons a {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin: 0 20px;
    transition: 0.4s ease;
    opacity: 0.7;
    text-decoration: none;
}

.social-icons a:hover {
    color: white;
    opacity: 1;
    transform: translateY(-3px);
}

.align-review-line {
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-family: 'Cinzel';
}

/* Fixed the alignment here */
.social-alignment-fix {
    display: flex;
    align-items: center;
    margin-top: 3rem;
}

.social-label {
    letter-spacing: 2px;
    opacity: 0.5;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.italic-quote {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-style: italic;
    border-left: 3px solid var(--deep-maroon);
    padding-left: 20px;
}

#connect {
    background: rgba(197, 160, 89, 0.02);
    border-top: 1px solid rgba(197, 160, 89, 0.05);
}