:root {
    --bg-dark-blue: #0a192f;
    --bg-darker: #020c1b;
    --text-copper: #c5a059;
    --text-copper-hover: #e0b86e;
    --text-light: #e6f1ff;
    --text-light-muted: #8892b0;
    --glass-bg: rgba(2, 12, 27, 0.7);
    --glass-border: rgba(197, 160, 89, 0.2);
    --font-cinzel: 'Cinzel', serif;
    --font-inter: 'Inter', sans-serif;
}

body {
    font-family: var(--font-inter);
    background-color: var(--bg-dark-blue);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
.font-cinzel {
    font-family: var(--font-cinzel);
}

.text-copper {
    color: var(--text-copper) !important;
}

.text-light-muted {
    color: var(--text-light-muted) !important;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.letter-spacing-3 {
    letter-spacing: 3px;
}

.bg-dark-blue {
    background-color: var(--bg-dark-blue) !important;
}

.bg-darker {
    background-color: var(--bg-darker) !important;
}

.bg-copper {
    background-color: var(--text-copper) !important;
}

.text-gradient-copper {
    background: linear-gradient(135deg, #fce38a, #c5a059, #8c6a28);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-copper {
    background: linear-gradient(135deg, #c5a059 0%, #a08246 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-copper:hover {
    background: linear-gradient(135deg, #e0b86e 0%, #c5a059 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
    color: #fff;
}

.btn-outline-copper {
    border: 1px solid var(--text-copper);
    color: var(--text-copper);
    transition: all 0.3s ease;
}

.btn-outline-copper:hover {
    background-color: var(--text-copper);
    color: #000;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--bg-dark-blue);
}

.hover-copper:hover {
    color: var(--text-copper) !important;
}

/* Top Bar */
.top-bar {
    background-color: #051020;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Navbar */
.navbar {
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: var(--text-copper);
    color: var(--bg-dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-link {
    color: var(--text-light) !important;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--text-copper);
    transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-copper) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 80px;
    background: url('https://images.unsplash.com/photo-1589829085413-56de8ae18c73?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') no-repeat center center/cover;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(2, 12, 27, 0.95) 0%, rgba(2, 12, 27, 0.8) 100%);
}

.hero-line {
    width: 80px;
    height: 4px;
    background-color: var(--text-copper);
}

.hero-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.divider-center {
    width: 60px;
    height: 3px;
    background-color: var(--text-copper);
}

/* About Section */
.about-image-main {
    position: relative;
    border: 1px solid var(--text-copper);
    padding: 15px;
}

.bg-gradient-placeholder {
    height: 400px;
    background: linear-gradient(45deg, #1a2a40, #0a192f);
}

.about-image-offset {
    position: absolute;
    bottom: -30px;
    right: -30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 2;
}

.icon-square {
    width: 50px;
    height: 50px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Services */
.service-card-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--text-copper);
    transition: height 0.4s ease;
}

.service-card-premium:hover::before, .service-card-premium.active::before {
    height: 100%;
}

.service-card-premium:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--text-copper);
    margin-bottom: 25px;
}

.service-card-premium h3 {
    color: #fff;
    font-family: var(--font-cinzel);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-card-premium p {
    color: var(--text-light-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-list li i {
    color: var(--text-copper);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Features / Why Choose Us */
.bg-gradient-dark {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark-blue) 100%);
}

.feature-image-box {
    position: relative;
}

.feature-img {
    height: 500px;
    background: url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') no-repeat center center/cover;
    filter: grayscale(100%) contrast(1.2);
    border-radius: 5px;
}

.feature-quote {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--bg-dark-blue);
    border-left: 5px solid var(--text-copper);
    width: 80%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.feature-row {
    display: flex;
    align-items: flex-start;
}

.feature-number {
    font-family: var(--font-cinzel);
    font-size: 3rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-right: 20px;
    -webkit-text-stroke: 1px var(--text-copper);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgba(197, 160, 89, 0.3);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.step-badge {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -20px;
    top: 0;
    background: var(--bg-dark-blue);
    border: 2px solid var(--text-copper);
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-copper);
    font-weight: bold;
}

.timeline-item.right .step-badge {
    left: -20px;
}

.timeline-content {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    position: relative;
}

/* Testimonials */
.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.testimonial-card {
    max-width: 800px;
    padding: 40px;
    background: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.testimonial-card::after {
    content: '\f10e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.03);
}

/* FAQ Accordion */
.custom-accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-accordion .accordion-button {
    background-color: transparent;
    color: var(--text-light);
    font-family: var(--font-cinzel);
    font-weight: 600;
    box-shadow: none;
    padding: 20px 0;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--text-copper);
}

.custom-accordion .accordion-button::after {
    filter: invert(1);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c5a059'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-body {
    color: var(--text-light-muted);
    padding: 0 0 20px 0;
}

/* Contact Form */
.custom-floating .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: #fff;
    padding-left: 0;
}

.custom-floating .form-control:focus {
    box-shadow: none;
    border-color: var(--text-copper);
}

.custom-floating label {
    padding-left: 0;
    color: rgba(255, 255, 255, 0.4);
}

.contact-wrapper {
    overflow: hidden;
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background-color: #000;
    color: var(--text-copper);
}

/* Footer */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-copper);
    padding-left: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 120px;
        text-align: center;
    }
    
    .hero-line {
        margin: 0 auto 20px;
    }
    
    .about-image-offset {
        position: static;
        margin-top: -50px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-quote {
        left: 0;
        width: 100%;
        position: relative;
        bottom: 0;
        margin-top: -50px;
    }
    
    .process-timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left;
    }
    
    .timeline-item.left, .timeline-item.right {
        left: 0;
    }
    
    .step-badge {
        left: 10px !important;
        right: auto;
    }
}
