/* Custom Interactive Styles for Green Solution Clone */

/* Floating Quick Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #ffffff !important;
    text-decoration: none !important;
    position: relative;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-btn.call-btn {
    background: linear-gradient(135deg, #1b6ca8, #0b3c5d);
}

.floating-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.floating-btn .tooltip-text {
    position: absolute;
    right: 64px;
    background: rgba(18, 30, 49, 0.95);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.floating-btn:hover .tooltip-text {
    opacity: 1;
    transform: translateX(0);
}

/* Modal Overlay */
.gs-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 20, 30, 0.75);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gs-modal-backdrop.active {
    display: flex;
    opacity: 1;
}

.gs-modal-container {
    background: #ffffff;
    width: 90%;
    max-width: 560px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border-top: 5px solid #28a745;
}

.gs-modal-backdrop.active .gs-modal-container {
    transform: translateY(0) scale(1);
}

.gs-modal-header {
    padding: 22px 28px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gs-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1a365d;
}

.gs-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #718096;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}

.gs-modal-close:hover {
    color: #e53e3e;
}

.gs-modal-body {
    padding: 24px 28px 28px;
}

.gs-form-group {
    margin-bottom: 16px;
}

.gs-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 6px;
}

.gs-form-input, .gs-form-select, .gs-form-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 14px;
    color: #2d3748;
    background-color: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.gs-form-input:focus, .gs-form-select:focus, .gs-form-textarea:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
}

.gs-form-textarea {
    resize: vertical;
    min-height: 90px;
}

.gs-form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s;
}

.gs-form-submit-btn:hover {
    background: linear-gradient(135deg, #218838, #19692c);
}

.gs-form-submit-btn:active {
    transform: scale(0.99);
}

/* Toast notification */
.gs-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1a202c;
    color: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 100001;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.gs-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.gs-toast.success {
    border-left: 4px solid #28a745;
}

/* 3K Nano Logo Styles */
.header-style-two .header-upper .logo-box .logo img,
.header-style-two .header-upper .logo-box a img {
    height: 68px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.sticky-header .logo img,
.sticky-header .logo a img {
    height: 55px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.mobile-menu .nav-logo img {
    height: 60px !important;
    width: auto !important;
    max-width: 260px !important;
    object-fit: contain;
    display: inline-block;
}

.footer-widget .fvk img {
    height: 58px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

