/* ==========================================================================
   NEJASHI TOURS (ነጃሺ ቱርስ) - LUXURY WEBSITE STYLESHEET
   Brand Colors from Content Doc:
   - Gold / Ochre: #C09553
   - Off-White / Cream: #FAF2E6
   - Deep Burgundy / Maroon: #3B0B1D
   ========================================================================== */

:root {
    --color-gold: #C09553;
    --color-gold-hover: #d3a45c;
    --color-gold-dark: #8c6328;
    --color-cream: #FAF2E6;
    --color-cream-soft: #F4EAD9;
    --color-white: #FFFFFF;
    --color-maroon: #3B0B1D;
    --color-maroon-dark: #22030E;
    --color-maroon-deep: #160108;
    --color-text-main: #1C1917;
    --color-text-muted: #44403C;
    --color-border-gold: rgba(192, 149, 83, 0.35);
    
    --font-heading: 'Cormorant Garamond', 'Noto Serif Ethiopic', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-ethiopic: 'Noto Serif Ethiopic', serif;
    
    --transition-smooth: all 0.3s ease-out;
    --shadow-subtle: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-elevated: 0 12px 32px rgba(0, 0, 0, 0.15);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-maroon);
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Announcement Bar */
.top-bar {
    background-color: var(--color-maroon-dark);
    color: var(--color-cream);
    font-size: 0.85rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--color-border-gold);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #FAF2E6;
}

.top-item i {
    color: var(--color-gold);
}

.top-item a {
    color: #FAF2E6;
}

.top-item a:hover {
    color: var(--color-gold);
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

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

.social-links-top a {
    color: #FAF2E6;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.social-links-top a:hover {
    background: var(--color-gold);
    color: var(--color-maroon-dark);
}

.lang-switcher {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: #FAF2E6;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-smooth);
}

.lang-switcher:hover {
    background: var(--color-gold);
    color: var(--color-maroon-dark);
}

/* Header & Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(34, 3, 14, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border-gold);
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.brand-subname {
    color: var(--color-gold);
    font-size: 0.8rem;
    font-family: var(--font-ethiopic);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

.nav-link {
    color: #FAF2E6;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.3rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #FAF2E6;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Button Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-gold {
    background-color: var(--color-gold);
    color: #160108; /* Crisp dark text for high contrast */
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(192, 149, 83, 0.4);
}

.btn-gold-outline {
    background-color: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-gold-outline:hover {
    background-color: var(--color-gold);
    color: #160108;
}

.btn-transparent {
    background-color: rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-transparent:hover {
    background-color: rgba(192, 149, 83, 0.25);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-block {
    width: 100%;
}

/* HERO SECTION (Full-Width Full-Height Image + Dark Gradient Overlay) */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-maroon-dark);
}

.hero-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay ensuring text readability */
    background: linear-gradient(180deg, 
        rgba(22, 1, 8, 0.82) 0%, 
        rgba(59, 11, 29, 0.88) 50%, 
        rgba(18, 1, 6, 0.96) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 5rem 1.5rem;
    max-width: 920px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.2rem;
    background: rgba(192, 149, 83, 0.2);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-sm);
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: #FFFFFF;
    margin-bottom: 1.2rem;
    font-weight: 700;
    line-height: 1.18;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    color: #FAF2E6;
    max-width: 780px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Trust Banner */
.trust-banner {
    background-color: #FAF2E6;
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-border-gold);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}

.trust-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.4rem;
    background: #FFFFFF;
    border: 1px solid rgba(192, 149, 83, 0.25);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold);
}

.trust-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: rgba(192, 149, 83, 0.15);
    color: var(--color-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.trust-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--color-maroon);
}

.trust-text p {
    font-size: 0.88rem;
    margin-bottom: 0;
    color: var(--color-text-muted);
}

/* About & Vision Section */
.about-section {
    padding: 5.5rem 0;
    background-color: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.image-frame-stacked {
    position: relative;
    padding-bottom: 2.5rem;
    padding-right: 2.5rem;
}

.img-main {
    width: 88%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-elevated);
}

.img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 230px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 3px solid var(--color-cream);
    box-shadow: var(--shadow-elevated);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.section-tag.center {
    justify-content: center;
}

.tag-line {
    width: 26px;
    height: 2px;
    background-color: var(--color-gold);
}

.tag-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-gold-dark);
    text-transform: uppercase;
}

.tag-text.gold {
    color: var(--color-gold);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    margin-bottom: 1.2rem;
    color: var(--color-maroon);
}

.light-title {
    color: #FFFFFF;
}

.section-description {
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    line-height: 1.7;
    color: var(--color-text-main);
}

.vision-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.v-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.v-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-gold);
    color: #160108;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.v-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.1rem;
    color: var(--color-maroon);
}

.v-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--color-text-muted);
}

/* Offerings / Services Section */
.offerings-section {
    padding: 5.5rem 0;
    background-color: var(--color-maroon);
    background-image: linear-gradient(180deg, #2A0513 0%, #3B0B1D 50%, #20030E 100%);
    color: var(--color-cream);
}

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

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.offering-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-subtle);
}

.offering-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-elevated);
}

.card-image-holder {
    height: 210px;
    overflow: hidden;
}

.offering-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offering-card:hover .offering-img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    color: var(--color-maroon);
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}

.card-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Tour Coordinator Section (Exact Gradient from Content Doc) */
.coordinator-section {
    padding: 5.5rem 0;
    background-color: var(--color-cream-soft);
}

.coordinator-card {
    /* Exact background gradient required by content.md */
    background: linear-gradient(180deg, #E5A128 0%, #AD1519 35%, #5A0612 70%, #210206 100%);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: 3rem;
    color: #FFFFFF;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: var(--shadow-elevated);
}

.ustaz-img-wrapper {
    width: 260px;
    height: 320px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--color-gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.ustaz-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.coordinator-name {
    color: #FFFFFF;
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 0.3rem;
}

.coordinator-role {
    color: #F8D89B;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.coordinator-bio p {
    color: #FAF2E6;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.8rem;
}

/* Packages Section */
.packages-section {
    padding: 5.5rem 0;
    background-color: var(--color-cream);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.2rem;
    align-items: stretch;
}

.package-card {
    background: #FFFFFF;
    border: 1px solid rgba(192, 149, 83, 0.35);
    border-radius: var(--radius-md);
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-subtle);
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-elevated);
}

.package-card.featured {
    border: 2px solid var(--color-gold);
}

.pkg-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(192, 149, 83, 0.2);
    margin-bottom: 1.5rem;
}

.pkg-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--color-gold);
    color: #160108;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.pkg-title {
    font-size: 1.6rem;
    color: var(--color-maroon);
}

.pkg-body {
    flex-grow: 1;
    margin-bottom: 1.8rem;
}

.pkg-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.pkg-features li i {
    color: var(--color-gold-dark);
    margin-top: 0.25rem;
}

/* Contact Section */
.contact-section {
    padding: 5.5rem 0;
    background-color: var(--color-cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 2rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--color-maroon);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-detail h4 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    color: var(--color-maroon);
}

.info-detail p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--color-text-main);
}

.social-connect {
    border-top: 1px solid var(--color-border-gold);
    padding-top: 1.2rem;
}

.social-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.92rem;
    color: var(--color-maroon);
}

.social-pills {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-pill {
    padding: 0.5rem 1.1rem;
    background: #FFFFFF;
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-maroon);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-pill:hover {
    background: var(--color-maroon);
    color: var(--color-gold);
    border-color: var(--color-maroon);
}

/* Form Card */
.form-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-subtle);
}

.form-header {
    margin-bottom: 1.6rem;
}

.form-header h3 {
    font-size: 1.7rem;
    margin-bottom: 0.3rem;
    color: var(--color-maroon);
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--color-text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #FAF2E6;
    border: 1px solid rgba(192, 149, 83, 0.4);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-text-main);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(192, 149, 83, 0.2);
}

/* Footer */
.site-footer {
    background-color: var(--color-maroon-dark);
    color: #FAF2E6;
    padding-top: 4.5rem;
    border-top: 1px solid var(--color-border-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3.5rem;
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
}

.tagline-footer {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-family: var(--font-heading);
    margin-bottom: 0.3rem;
}

.vision-footer {
    color: rgba(250, 242, 230, 0.8);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
    color: #FFFFFF;
    font-size: 1.15rem;
    margin-bottom: 1.1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: rgba(250, 242, 230, 0.85);
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-contact p {
    color: rgba(250, 242, 230, 0.85);
    font-size: 0.92rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-contact i {
    color: var(--color-gold);
}

.footer-bottom {
    background: #120107;
    padding: 1.4rem 0;
    border-top: 1px solid rgba(192, 149, 83, 0.15);
    font-size: 0.88rem;
    color: rgba(250, 242, 230, 0.7);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.social-links-footer a {
    color: #FAF2E6;
    font-size: 1.1rem;
}

.social-links-footer a:hover {
    color: var(--color-gold);
}

/* VERTICAL FLOATING CHAT WIDGET */
.vertical-chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 0.75rem;
}

.chat-toggle-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-maroon);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-smooth);
}

.chat-toggle-btn:hover {
    transform: scale(1.06);
    background: var(--color-gold);
    color: #160108;
}

.chat-status-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #22c55e;
    border: 2px solid var(--color-maroon-dark);
    border-radius: 50%;
}

.vertical-chat-menu {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.vertical-chat-widget.active .vertical-chat-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.v-chat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius-sm);
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-smooth);
}

.v-chat-item:hover {
    transform: translateX(-4px);
}

.v-chat-item.whatsapp {
    background: #25D366;
}

.v-chat-item.whatsapp:hover {
    background: #1ebc57;
}

.v-chat-item.telegram {
    background: #229ED9;
}

.v-chat-item.telegram:hover {
    background: #1b89be;
}

.v-chat-item.phone {
    background: var(--color-maroon);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.v-chat-item.phone:hover {
    background: var(--color-gold);
    color: #160108;
}

.v-chat-label {
    white-space: nowrap;
}

/* Scroll Animation Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .coordinator-card {
        grid-template-columns: 1fr;
        padding: 2.2rem;
        gap: 2rem;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(34, 3, 14, 0.98);
        border-bottom: 1px solid var(--color-border-gold);
        padding: 1.5rem;
        display: none;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
}

@media (max-width: 480px) {
    .vertical-chat-widget {
        bottom: 1.2rem;
        right: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }
}
