@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --elite-navy: #001f3f;
    --elite-midnight: #0a192f;
    --elite-gold: #d4af37;
    --elite-gold-light: #f1d592;
    --elite-gold-dark: #aa8c2c;
    --elite-silver: #ccd6f6;
    --elite-white: #ffffff;
    --elite-glass: rgba(255, 255, 255, 0.05);
    --elite-glass-border: rgba(255, 255, 255, 0.1);
    --elite-gold-border: rgba(212, 175, 55, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--elite-silver);
    background-color: var(--elite-midnight);
}

h1,
h2,
h3,
.main-slider__title {
    font-family: 'Playfair Display', serif;
}

/* Header & Nav */
.main-header {
    background: rgba(10, 25, 47, 0.85) !important;
    backdrop-filter: blur(15px);
    border-bottom: 3px solid var(--elite-gold);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 0 10px rgba(212, 175, 55, 0.2);
}

.main-header__top {
    border-bottom: 1px solid var(--elite-glass-border);
}

.main-menu__list a {
    color: var(--elite-gold) !important;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.main-menu__list li:hover>a,
.main-menu__list li.current>a {
    color: #000000 !important;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Specific Logo Adjustment */
.main-menu__logo img {
    filter: brightness(1.2) contrast(1.1);
    max-height: 60px;
}

/* Navigation Glow */
.main-menu__list li.scrollToLink>a:after {
    background: var(--elite-gold);
}

/* Buttons Transformation */
.thm-btn {
    background: linear-gradient(135deg, var(--elite-gold-dark), var(--elite-gold), var(--elite-gold-light)) !important;
    color: var(--elite-midnight) !important;
    border: 2px solid var(--elite-gold-light);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    font-weight: 800;
}

.thm-btn:hover {
    background: linear-gradient(135deg, var(--elite-gold-light), var(--elite-gold), var(--elite-gold-dark)) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

/* Glass Cards for Features */
.feature-one__single {
    background: rgba(0, 31, 63, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--elite-gold);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Section Titles with Underline */
.section-title__title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--elite-gold);
    margin-top: 15px;
}

.text-center .section-title__title:after {
    margin: 15px auto 0;
}

/* FAQ Accrodion Polishing */
.accrodion {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--elite-glass-border) !important;
    margin-bottom: 10px;
    border-radius: 8px;
}

.accrodion-title {
    padding: 20px !important;
}

/* Sections Global Enhancements */
section {
    position: relative;
    border-top: 1px solid var(--elite-gold-border);
    border-bottom: 1px solid var(--elite-gold-border);
}

section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 80%);
    pointer-events: none;
}

/* Footer & Global Overrides */
footer,
.main-header__top,
.counter-one {
    background-color: #050d1a !important;
    border-top: 2px solid var(--elite-gold) !important;
}

.bg-light,
.contact-page.bg-light {
    background-color: #fcfcfc !important;
    /* Premium Pearl White */
    border-top: 1px solid var(--elite-gold-border);
    border-bottom: 1px solid var(--elite-gold-border);
}

.testimonial-one,
.why-choose-one,
.about-one {
    background-color: #ffffff !important;
    border-top: 1px solid var(--elite-gold);
    border-bottom: 1px solid var(--elite-gold);
}

p,
.about-one__text-1,
.about-one__text-2,
.why-choose-one__text,
.testimonial-one__text {
    color: #000000 !important;
    font-weight: 500;
}

.section-title__title,
.feature-one__text,
.services-one__top-text,
.footer-widget__about-text,
.accrodion-content p {
    color: #ffffff !important;
    /* Requested white color for these elements */
}

.services-one {
    background-color: var(--elite-midnight);
}

.bg-light .section-title__title,
.testimonial-one .section-title__title,
.why-choose-one .section-title__title,
.about-one .section-title__title {
    color: #000000 !important;
}

/* Ensure white text is visible in footer */
.footer-widget__about-text {
    color: #ffffff !important;
}