/* ====================================
   THEME COLORS & VARIABLES
   ==================================== */
:root {
    --primary-gold: #d4af37;
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f3a;
    --tertiary-dark: #2d3561;
    --text-light: #e5e5e5;
    --text-muted: #a0a0a0;
    --gradient-gold: linear-gradient(135deg, #d4af37, #aa8c1f);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-backdrop: blur(20px);
    --border-radius: 15px;
    --transition-speed: 0.3s ease;
}

/* ====================================
   GENERAL STYLES
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* ====================================
   LOADING SCREEN
   ==================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOutLoading 0.5s ease-in-out 2.5s forwards;
}

@keyframes fadeOutLoading {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.loading-content {
    text-align: center;
}

.spinner {
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top: 4px solid #d4af37;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.loading-screen p {
    color: #d4af37;
    margin-top: 15px;
    font-weight: 600;
}

/* ====================================
   NAVBAR
   ==================================== */
#navbar {
    background-color: transparent;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition-speed);
    backdrop-filter: none;
    padding: 1rem 0;
}

#navbar.scrolled {
    background-color: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-logo {
    height: 50px;
    width: auto;
    margin-right: 10px;
    margin-left: 25px;
    object-fit: contain;
}

.brand-text {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    margin: 0 10px;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-speed);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #d4af37;
    bottom: -5px;
    left: 50%;
    transition: all var(--transition-speed);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: #d4af37 !important;
}

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

.btn-consultation {
    background-color: transparent !important;
    border: 2px solid #d4af37;
    color: #d4af37 !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 25px;
    transition: all var(--transition-speed);
}

.btn-consultation:hover {
    background-color: #d4af37 !important;
    color: #0a0e27 !important;
}

/* ====================================
   BUTTONS
   ==================================== */
.btn-gold {
    background: var(--gradient-gold);
    border: none;
    color: #0a0e27;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    transition: all var(--transition-speed);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #aa8c1f, #d4af37);
}

.btn-outline-gold {
    background-color: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    transition: all var(--transition-speed);
}

.btn-outline-gold:hover {
    background-color: #d4af37;
    color: #0a0e27;
    transform: translateY(-3px);
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero-section{
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content{
    position: relative;
    z-index: 2;
}

.hero-image{
    position: relative;
    z-index: 2;
}

.hero-photo{
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    object-fit: cover;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 14, 39, 0.7);
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #d4af37;
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    color: #d4af37;
    cursor: pointer;
}

.hero-scroll i {
    display: block;
    margin-top: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ====================================
   GLASS MORPHISM CARDS
   ==================================== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
}

.glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

/* ====================================
   QUICK STATS
   ==================================== */
.quick-stats {
    background-color: var(--secondary-dark);
}

.stat-card {
    padding: 2rem 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ====================================
   SECTIONS
   ==================================== */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto;
}

/* ====================================
   SERVICE CARDS
   ==================================== */
.service-card-img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 18px 18px 0 0;
}

/* LINK TITLE */
.service-title-link{
    text-decoration: none;
}

/* TITLE */
.service-detailed-title{
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 0;
    line-height: 1.4;
}

/* SHORT DESCRIPTION */
.service-detailed-desc{
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.7;
    margin-top: 15px;
    margin-bottom: 1rem;
}

/* FULL DETAIL */
.service-full-detail{
    text-align: left;
    color: rgba(255,255,255,0.75);
    border-top: 1px solid rgba(212,175,55,0.3);
    padding-top: 15px;
}

.service-full-detail ul{
    padding-left: 20px;
}

/* CARD */
.service-detailed-card{
    display: block;
    overflow: hidden;
    padding: 0;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
    position: relative;
}

/* HOVER EFFECT */
.service-detailed-card:hover{
    transform: translateY(-5px);
}

/* CARD CONTENT */
.service-detailed-content{
    padding: 20px;
    text-align: center;
}

/* FEATURES */
.service-features{
    list-style: none;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0;
    margin-top: 15px;
}

.service-features li{
    margin-bottom: 0.5rem;
}

/* OLD SERVICE CARD EFFECT */
.service-card::before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

/* ICON */
.service-icon{
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
    transition: all var(--transition-speed);
}

.service-card:hover .service-icon{
    transform: scale(1.2) rotateY(360deg);
}

/* SIMPLE CARD TITLE */
.service-title{
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

/* SIMPLE CARD DESC */
.service-desc{
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ====================================
   PAGE HEADER
   ==================================== */
.page-header {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 14, 39, 0.8);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #d4af37;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

/* ====================================
   ABOUT SECTION
   ==================================== */
.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(10, 14, 39, 0.9));
    padding: 2rem;
    border-radius: var(--border-radius);
}

.position-title {
    color: #d4af37;
    font-weight: 600;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-highlights {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    border-left: 3px solid #d4af37;
    padding-left: 1.5rem;
}

.highlight-item h5 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Vision & Mission */
.vision-mission-card {
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.vm-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.vision-mission-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Core Values */
.value-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all var(--transition-speed);
}

.value-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #d4af37, transparent);
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: 50%;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    margin-right: 0;
    padding-left: 3rem;
}

.timeline-marker {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #d4af37;
    border: 3px solid #0a0e27;
    border-radius: 50%;
    top: 0;
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -40px;
}

.timeline-content {
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.timeline-content h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.timeline-content h5 {
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: 7px;
    }
}

/* ====================================
   ARTICLES
   ==================================== */
.search-box {
    position: relative;
    padding: 0;
    border-radius: 25px;
}

.search-box input {
    background-color: transparent;
    border: none;
    color: var(--text-light);
    padding: 1rem 1.5rem 1rem 3rem;
    border-radius: 25px;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
}

.article-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-speed);
    height: 100%;
}

.article-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #d4af37;
    color: #0a0e27;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.article-read-more {
    background-color: #d4af37;
    color: #0a0e27;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.article-card:hover .article-image {
    transform: scale(1.1);
}

.article-card:hover .article-overlay {
    opacity: 1;
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.article-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.article-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.read-more-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed);
    display: inline-block;
}

.read-more-link:hover {
    transform: translateX(5px);
}

/* ====================================
   TESTIMONIALS
   ==================================== */
.testimonial-card {
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.testimonial-stars i {
    font-size: 1.2rem;
}

.testimonial-content {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    margin: 2rem 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-info {
    text-align: left;
}

.author-name {
    color: var(--text-light);
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.author-position {
    color: #d4af37;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.author-company {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.carousel-indicators [data-bs-target] {
    background-color: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: #d4af37;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 0.5;
    color: #d4af37;
    background: none;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.testimonial-grid-card {
    padding: 2rem;
    border-radius: var(--border-radius);
}

.testimonial-quote {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-box {
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-label {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ====================================
   CONTACT & FORMS
   ==================================== */
.contact-info-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.contact-info-card a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-info-card small {
    color: var(--text-muted);
    display: block;
    margin-top: 0.5rem;
}

.maps-embed {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.maps-embed iframe {
    border: none;
}

.address-info h3 {
    color: #d4af37;
}

.address-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: all var(--transition-speed);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #d4af37;
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.2);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-select {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    padding: 0.8rem 1rem;
    border-radius: 10px;
}

.form-select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #d4af37;
    color: var(--text-light);
}

.form-select option {
    background-color: #1a1f3a;
    color: var(--text-light);
}

.form-label {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-check-input:checked {
    background-color: #d4af37;
    border-color: #d4af37;
}

.form-check-label {
    color: var(--text-light);
    margin-left: 0.5rem;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
}

.subscribe-form .form-control {
    flex: 1;
}

.subscribe-form .btn {
    white-space: nowrap;
}

/* ====================================
   CONSULTATION
   ==================================== */
.info-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.info-card h5 {
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.consultation-guide h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.guide-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    background: var(--gradient-gold);
    color: #0a0e27;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.guide-step h5 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.guide-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.alert-info {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background-color: var(--secondary-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 4rem 0 1rem;
}

.footer-content {
    position: relative;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-brand h5 {
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h5 {
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition-speed);
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 0.5rem;
}

.footer-contact h5 {
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-contact a {
    color: #d4af37;
    text-decoration: none;
    transition: all var(--transition-speed);
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-social h5 {
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    text-decoration: none;
    transition: all var(--transition-speed);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-link:hover {
    background: #d4af37;
    color: #0a0e27;
    transform: translateY(-3px);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ====================================
   FLOATING ELEMENTS
   ==================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 100;
    transition: all var(--transition-speed);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #aa8c1f);
    color: #0a0e27;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
    z-index: 100;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.review-card{
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
}

.review-card:hover{
    transform: translateY(-8px);
}

.review-stars{
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.review-card p{
    color: #f1f1f1;
    font-size: 16px;
    line-height: 1.7;
}

.review-card h5{
    color: #d4af37;
    margin-top: 20px;
    font-weight: 600;
}

/* ====================================
   CTA SECTION
   ==================================== */
.cta-section {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ====================================
   WHY CHOOSE US
   ==================================== */
.why-choose-us {
    padding: 5rem 0;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.why-icon {
    font-size: 1.8rem;
    color: #d4af37;
    min-width: 30px;
}

.why-text h5 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.why-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ====================================
   ACCORDION
   ==================================== */
.accordion-custom {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(212, 175, 55, 0.1);
    --bs-accordion-btn-active-bg: rgba(212, 175, 55, 0.1);
    --bs-accordion-btn-active-border-color: rgba(212, 175, 55, 0.3);
}

.accordion-item {
    background-color: transparent;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius);
}

.accordion-item.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
}

.accordion-button {
    background-color: transparent;
    color: var(--text-light);
    font-weight: 600;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(212, 175, 55, 0.08);
    color: #d4af37;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.15);
}

.accordion-body {
    color: var(--text-light);
    padding: 1.5rem;
}

.accordion-body ul {
    color: var(--text-muted);
    margin-left: 1.5rem;
}

.accordion-body ul li {
    margin-bottom: 0.5rem;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 4vw, 3rem);
    }
}

@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
    }

    .btn-consultation {
        margin-top: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .page-title {
        font-size: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: 7px;
    }
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 30px;
    }

    .brand-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .page-header {
        min-height: 200px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }

    .article-image-wrapper {
        height: 200px;
    }

    .cta-section {
        text-align: center;
    }

    .cta-section .row {
        flex-direction: column;
    }

    .cta-section .col-lg-5 {
        margin-top: 1.5rem;
    }

    .consultation-guide {
        margin-bottom: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 80px;
        right: 20px;
    }

    .footer-logo {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .title-underline {
        width: 80px;
    }

    .search-box input {
        padding: 0.8rem 1rem 0.8rem 2.5rem;
    }

    .article-card {
        margin-bottom: 1.5rem;
    }

    .service-features li {
        font-size: 0.85rem;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form .btn {
        width: 100%;
    }

    .form-group {
        margin-bottom: 0.8rem;
    }

    .form-label {
        font-size: 0.85rem;
    }

    .modal-lg {
        max-width: 90vw;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .page-header {
        margin-top: 60px;
    }
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.slide-in-right {
    animation: slideInRight 0.5s ease-in-out;
}

/* Text Gold */
.text-gold {
    color: #d4af37 !important;
}

/* Text Muted */
.text-muted {
    color: var(--text-muted) !important;
}

/* Background Dark */
.bg-dark {
    background-color: var(--secondary-dark) !important;
}

/* Hover Glow */
.hover-glow:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.service-card-img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.featured-services {
    background: #080d24;
    padding: 80px 0;
}

.service-card {
    height: 100%;
    min-height: 230px;
    padding: 35px 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.18);
}

.service-icon {
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 25px;
}

.service-card h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-card p {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .service-card {
        min-height: auto;
        text-align: center;
    }
}

