/* Euro Time Travel - Premium Visa Consultancy CSS Design */

:root {
    --primary-color: #0c2340;       /* Deep Navy Blue */
    --primary-light: #16365f;
    --primary-dark: #061121;
    --accent-color: #d4af37;        /* Metallic Gold */
    --accent-hover: #bda030;
    --text-color: #333333;
    --text-light: #777777;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-premium: 0 20px 25px -5px rgba(12, 35, 64, 0.1), 0 10px 10px -5px rgba(12, 35, 64, 0.04);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

ul {
    list-style: none;
}

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

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

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

/* TOP LINE */
.top-line {
    background-color: var(--primary-dark);
    color: var(--bg-light);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-line .info-left span {
    margin-right: 20px;
    opacity: 0.85;
}

.top-line .info-left span i {
    color: var(--accent-color);
    margin-right: 6px;
}

.top-line .info-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-line .info-right a {
    opacity: 0.85;
}

.top-line .info-right a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.top-line .social-icons {
    display: flex;
    gap: 10px;
}

.top-line .social-icons a {
    color: var(--bg-white);
    opacity: 0.7;
}

.top-line .social-icons a:hover {
    color: var(--accent-color);
    opacity: 1;
}

/* HEADER & NAVIGATION */
header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent-color);
}

.logo img {
    height: 60px;
    width: auto;
    max-height: 70px;
    object-fit: contain;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding: 8px 0;
    font-size: 15px;
}

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

.nav-links a:hover {
    color: var(--accent-color);
}

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

.nav-links a.active {
    color: var(--accent-color);
}

.header-cta {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--primary-color);
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
    color: var(--primary-dark);
}

/* MOBILE TOGGLE */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* HOME SLIDER */
.slider-container {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(6, 17, 33, 0.85) 40%, rgba(6, 17, 33, 0.3) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    max-width: 650px;
    padding-left: 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--accent-color);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-premium {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--primary-color);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    border: none;
    cursor: pointer;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--primary-color);
}

.slider-nav {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--accent-color);
    width: 28px;
    border-radius: 6px;
}

/* SECTION GLOBAL */
.section-padding {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--bg-white);
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-title h5 {
    color: var(--accent-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title h2 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
}

.section-title p {
    color: var(--text-light);
    margin-top: 15px;
    font-size: 16px;
}

/* QUICK CALL BACK SECTION */
.quick-call {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 40px 0;
    position: relative;
    z-index: 30;
    margin-top: -30px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.quick-call-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quick-call-title {
    flex: 1;
    min-width: 280px;
}

.quick-call-title h3 {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.quick-call-title p {
    font-size: 14px;
    opacity: 0.8;
}

.quick-call-inputs {
    display: flex;
    flex: 2;
    min-width: 320px;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.quick-call-inputs input, .quick-call-inputs select {
    flex: 1;
    min-width: 150px;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.1);
    color: var(--bg-white);
    border-radius: 4px;
    font-size: 15px;
}

.quick-call-inputs select option {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.quick-call-inputs input::placeholder {
    color: rgba(255,255,255,0.6);
}

.quick-call-inputs button {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--primary-color);
    border: none;
    padding: 12px 25px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.quick-call-inputs button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* ABOUT SNIPPET */
.about-snippet {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-snippet-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-snippet-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-snippet-image {
    position: relative;
}

.about-snippet-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
    display: block;
    width: 100%;
    object-fit: cover;
    height: 400px;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-experience-badge h4 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge p {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* COUNTRIES GRID */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.country-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(212, 175, 55, 0.4);
}

.country-card-header {
    height: 180px;
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-card-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(6, 17, 33, 0.7) 0%, rgba(6, 17, 33, 0.15) 100%);
    z-index: 2;
}

.country-flag-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}

.country-card-header img.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.country-card-content {
    padding: 20px;
}

.country-card-content h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.country-card-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.country-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.country-card-footer a {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.country-card-footer a:hover {
    color: var(--primary-color);
}

/* WHY CHOOSE US */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-us-card {
    background-color: var(--bg-light);
    padding: 35px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.why-us-card:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.why-us-icon {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.why-us-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-us-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* PAGE HEADER BREADCRUMB */
.page-banner {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 17, 33, 0.85);
}

.page-banner .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.page-banner h1 {
    font-size: 32px;
    font-weight: 800;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs span.separator {
    color: var(--accent-color);
}

/* CONTACT PAGE */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 20px;
}

.contact-info-icon {
    font-size: 28px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-text h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-info-text p, .contact-info-text a {
    color: var(--text-light);
    font-size: 14px;
}

.contact-form-panel {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.contact-form-panel h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    background-color: var(--bg-light);
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
    resize: vertical;
    height: 120px;
}

.contact-map {
    margin-top: 50px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* COUNTRY DETAILS TAB PANEL */
.country-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.country-main-content {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.country-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.country-detail-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 800;
}

.country-detail-header img.flag {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.visa-content-body h3 {
    color: var(--primary-color);
    margin: 25px 0 15px;
    font-size: 22px;
}

.visa-content-body h4 {
    color: var(--primary-light);
    margin: 20px 0 10px;
    font-size: 18px;
}

.visa-content-body p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.visa-content-body ul {
    margin: 15px 0 20px;
    padding-left: 20px;
    list-style-type: square;
}

.visa-content-body li {
    color: var(--text-light);
    margin-bottom: 8px;
}

.country-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 18px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 700;
}

.sidebar-countries-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}

.sidebar-countries-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 4px;
    background-color: var(--bg-light);
    font-size: 14px;
    font-weight: 600;
}

.sidebar-countries-list a.active, .sidebar-countries-list a:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.sidebar-countries-list a img {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
}

/* FOOTER */
footer {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-widget h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-widget.about-widget p {
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-widget.links-widget ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-widget.links-widget a {
    font-size: 14px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-widget.links-widget a::before {
    content: '→';
    color: var(--accent-color);
}

.footer-widget.links-widget a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-widget.contact-widget ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-widget.contact-widget li {
    font-size: 14px;
    opacity: 0.8;
    display: flex;
    gap: 12px;
}

.footer-widget.contact-widget li i {
    color: var(--accent-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    opacity: 0.7;
}

/* NOTIFICATION MESSAGE */
.alert-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    display: none;
    animation: slideInUp 0.3s ease-out;
    border-left: 5px solid var(--accent-color);
}

.alert-popup.error {
    border-left-color: var(--danger-color);
}

.alert-popup.success {
    border-left-color: var(--success-color);
}

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

/* RESPONSIVE LAYOUTS */
@media (max-width: 992px) {
    .about-snippet {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-snippet-image img {
        height: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-layout, .country-detail-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-line {
        display: none;
    }
    
    header .container {
        height: 70px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .main-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
        gap: 30px;
        z-index: 99;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-smooth);
    }
    
    .main-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 20px;
    }
    
    .nav-links a {
        width: 100%;
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .header-cta {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    .slider-container {
        height: 500px;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 15px;
    }
    
    .quick-call-inputs {
        flex-direction: column;
    }
    
    .quick-call-inputs input, .quick-call-inputs select, .quick-call-inputs button {
        width: 100%;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 450px;
    }
    
    .slide-content h2 {
        font-size: 26px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* WHATSAPP FLOATING WIDGET */
.whatsapp-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideInPopup 0.3s ease-out;
}

.whatsapp-popup.active {
    display: flex;
}

.whatsapp-popup-header {
    background-color: #075e54;
    color: #ffffff;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-popup-header i {
    font-size: 24px;
}

.whatsapp-popup-header-text h4 {
    font-size: 14px;
    font-weight: 700;
}

.whatsapp-popup-header-text p {
    font-size: 11px;
    opacity: 0.8;
}

.whatsapp-popup-body {
    padding: 15px;
    background-color: #efeae2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.whatsapp-operator-item {
    background-color: #ffffff;
    padding: 10px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e1e6eb;
    transition: var(--transition-smooth);
}

.whatsapp-operator-item:hover {
    transform: translateY(-2px);
    border-color: #25d366;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.whatsapp-operator-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.whatsapp-operator-info {
    display: flex;
    flex-direction: column;
}

.whatsapp-operator-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
}

.whatsapp-operator-title {
    font-size: 11px;
    color: var(--text-light);
}

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

/* Adjust Alert Popup Position to not overlap WhatsApp button */
.alert-popup {
    bottom: 105px;
}

