/* Viola Concept's - contact 頁專用樣式 (由原始設計擷取，確保 100% 一致) */
        /* ==================== CSS 變數 ==================== */
        :root {
            --primary-black: #1a1a1a;
            --secondary-black: #333333;
            --dark-gray: #2a2a2a;
            --primary-white: #ffffff;
            --off-white: #f8f8f8;
            --gray-light: #e5e5e5;
            --gray-medium: #999999;
            --gray-dark: #666666;
            --accent-gold: #c9a962;
            --success-green: #28a745;
            --error-red: #dc3545;
            --transition-speed: 0.3s;
            --header-height: 80px;
        }

        /* ==================== Reset & Base ==================== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Noto Sans TC', sans-serif;
            background-color: var(--primary-white);
            color: var(--primary-black);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; transition: color var(--transition-speed) ease; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; }
        .container { max-width: 1400px; margin: 0 auto; padding: 0 30px; }

        /* ==================== Header ==================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: var(--primary-white);
            z-index: 1000;
            transition: all var(--transition-speed) ease;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        }
        .header.scrolled {
            height: 70px;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 1001;
        }
        .logo img { height: 50px; width: auto; transition: transform var(--transition-speed) ease; }
        .logo:hover img { transform: scale(1.05); }
        .logo-text { font-size: 1.4rem; font-weight: 700; color: var(--primary-black); }
        .logo-text span { color: var(--accent-gold); }
        .nav-desktop { display: flex; align-items: center; gap: 8px; }
        .nav-link {
            position: relative;
            padding: 12px 20px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--secondary-black);
            transition: all var(--transition-speed) ease;
        }
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-black);
            transition: all var(--transition-speed) ease;
            transform: translateX(-50%);
        }
        .nav-link:hover, .nav-link.active { color: var(--primary-black); }
        .nav-link:hover::before, .nav-link.active::before { width: calc(100% - 40px); }
        .nav-cta {
            margin-left: 15px;
            padding: 12px 28px;
            background: var(--primary-black);
            color: var(--primary-white);
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 30px;
            transition: all var(--transition-speed) ease;
        }
        .nav-cta:hover {
            background: var(--secondary-black);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }
        .hamburger {
            display: none;
            width: 32px;
            height: 24px;
            position: relative;
            cursor: pointer;
            z-index: 1001;
        }
        .hamburger span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-black);
            border-radius: 3px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .hamburger span:nth-child(1) { top: 0; }
        .hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
        .hamburger span:nth-child(3) { bottom: 0; }
        .hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
        .hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
        .hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }
        .nav-mobile {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: var(--primary-white);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 10px;
            transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
            z-index: 999;
        }
        .nav-mobile.active { right: 0; }
        .nav-mobile .nav-link {
            font-size: 1.5rem;
            padding: 15px 30px;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.4s ease;
        }
        .nav-mobile.active .nav-link { opacity: 1; transform: translateX(0); }
        .nav-mobile.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
        .nav-mobile.active .nav-link:nth-child(2) { transition-delay: 0.15s; }
        .nav-mobile.active .nav-link:nth-child(3) { transition-delay: 0.2s; }
        .nav-mobile.active .nav-link:nth-child(4) { transition-delay: 0.25s; }
        .nav-mobile.active .nav-link:nth-child(5) { transition-delay: 0.3s; }
        .nav-mobile.active .nav-link:nth-child(6) { transition-delay: 0.35s; }
        .nav-mobile .nav-cta {
            margin-top: 30px;
            font-size: 1.1rem;
            padding: 15px 40px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.5s;
        }
        .nav-mobile.active .nav-cta { opacity: 1; transform: translateY(0); }
        .mobile-social { display: flex; gap: 20px; margin-top: 40px; opacity: 0; transition: opacity 0.4s ease 0.6s; }
        .nav-mobile.active .mobile-social { opacity: 1; }
        .mobile-social a {
            width: 45px;
            height: 45px;
            border: 2px solid var(--primary-black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all var(--transition-speed) ease;
        }
        .mobile-social a:hover { background: var(--primary-black); color: var(--primary-white); }

        /* ==================== Page Banner ==================== */
        .page-banner {
            position: relative;
            height: 45vh;
            min-height: 350px;
            margin-top: var(--header-height);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .page-banner-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/photo/b01.jpg') center/cover no-repeat;
        }
        .page-banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
        }
        .page-banner-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: var(--primary-white);
        }
        .page-banner-subtitle {
            font-size: 1rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }
        .page-banner-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.4s forwards;
        }
        .page-banner-title span { color: var(--accent-gold); }
        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 0.95rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.6s forwards;
        }
        .breadcrumb a { color: var(--gray-medium); }
        .breadcrumb a:hover { color: var(--accent-gold); }
        @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

        /* ==================== Section Common ==================== */
        .section { padding: 80px 0; }
        .section-header { text-align: center; margin-bottom: 50px; }
        .section-subtitle {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--accent-gold);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        .section-title { font-size: 2.5rem; font-weight: 700; color: var(--primary-black); margin-bottom: 20px; }
        .section-title span { color: var(--accent-gold); }
        .section-description { font-size: 1.1rem; color: var(--gray-dark); max-width: 700px; margin: 0 auto; }

        /* ==================== Contact Info Cards ==================== */
        .contact-info-section { background: var(--off-white); }
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        .contact-info-card {
            background: var(--primary-white);
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all var(--transition-speed) ease;
            position: relative;
            overflow: hidden;
        }
        .contact-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-gold);
            transform: scaleX(0);
            transition: transform var(--transition-speed) ease;
        }
        .contact-info-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
        .contact-info-card:hover::before { transform: scaleX(1); }
        .contact-info-icon {
            width: 70px;
            height: 70px;
            background: var(--off-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: var(--accent-gold);
            transition: all var(--transition-speed) ease;
        }
        .contact-info-card:hover .contact-info-icon { background: var(--primary-black); color: var(--primary-white); }
        .contact-info-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; color: var(--primary-black); }
        .contact-info-card p { font-size: 0.95rem; color: var(--gray-dark); line-height: 1.6; }
        .contact-info-card a { color: var(--primary-black); font-weight: 500; }
        .contact-info-card a:hover { color: var(--accent-gold); }

        /* ==================== Contact Main Section ==================== */
        .contact-main-section { background: var(--primary-white); }
        .contact-main-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: var(--off-white);
            border-radius: 25px;
            padding: 50px;
        }
        .contact-form-wrapper h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--primary-black);
        }
        .contact-form-wrapper h2 span { color: var(--accent-gold); }
        .contact-form-wrapper > p {
            color: var(--gray-dark);
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        .form-group { margin-bottom: 20px; }
        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--primary-black);
            margin-bottom: 8px;
        }
        .form-group label span { color: var(--error-red); }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--gray-light);
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: all var(--transition-speed) ease;
            background: var(--primary-white);
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.1);
        }
        .form-group textarea { min-height: 150px; resize: vertical; }
        .form-group select { cursor: pointer; }
        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 25px;
        }
        .form-checkbox input {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            cursor: pointer;
        }
        .form-checkbox label {
            font-size: 0.9rem;
            color: var(--gray-dark);
            cursor: pointer;
        }
        .form-checkbox label a { color: var(--primary-black); text-decoration: underline; }
        .submit-btn {
            width: 100%;
            padding: 18px 40px;
            background: var(--primary-black);
            color: var(--primary-white);
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-speed) ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .submit-btn:hover {
            background: var(--accent-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
        }
        .submit-btn:disabled { background: var(--gray-medium); cursor: not-allowed; transform: none; }
        .form-note {
            text-align: center;
            margin-top: 20px;
            font-size: 0.85rem;
            color: var(--gray-dark);
        }
        .form-note i { color: var(--success-green); margin-right: 5px; }

        /* Contact Details */
        .contact-details-wrapper h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--primary-black);
        }
        .contact-details-wrapper h2 span { color: var(--accent-gold); }
        .contact-details-wrapper > p {
            color: var(--gray-dark);
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .contact-detail-item {
            display: flex;
            gap: 20px;
            padding: 25px;
            background: var(--off-white);
            border-radius: 15px;
            margin-bottom: 20px;
            transition: all var(--transition-speed) ease;
        }
        .contact-detail-item:hover { transform: translateX(10px); background: var(--gray-light); }
        .contact-detail-icon {
            width: 55px;
            height: 55px;
            background: var(--primary-black);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-white);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .contact-detail-content h4 { font-size: 1rem; font-weight: 600; margin-bottom: 5px; color: var(--primary-black); }
        .contact-detail-content p { font-size: 0.95rem; color: var(--gray-dark); margin-bottom: 5px; }
        .contact-detail-content a { color: var(--primary-black); font-weight: 500; }
        .contact-detail-content a:hover { color: var(--accent-gold); }

        /* Quick Contact Buttons */
        .quick-contact-btns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 30px;
        }
        .quick-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 20px;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all var(--transition-speed) ease;
        }
        .quick-btn-whatsapp { background: #25D366; color: var(--primary-white); }
        .quick-btn-whatsapp:hover { background: #128C7E; transform: translateY(-3px); }
        .quick-btn-phone { background: var(--primary-black); color: var(--primary-white); }
        .quick-btn-phone:hover { background: var(--accent-gold); transform: translateY(-3px); }

        /* Opening Hours */
        .opening-hours-box {
            background: var(--primary-black);
            border-radius: 20px;
            padding: 30px;
            margin-top: 30px;
            color: var(--primary-white);
        }
        .opening-hours-box h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .opening-hours-box h3 i { color: var(--accent-gold); }
        .hours-list { display: flex; flex-direction: column; gap: 12px; }
        .hours-item {
            display: flex;
            justify-content: space-between;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .hours-item:last-child { border-bottom: none; padding-bottom: 0; }
        .hours-item .day { color: var(--gray-medium); }
        .hours-item .time { font-weight: 500; }
        .hours-item.highlight .time { color: var(--accent-gold); }

        /* ==================== Map Section ==================== */
        .map-section { background: var(--off-white); }
        .map-container {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        .map-container iframe {
            width: 100%;
            height: 450px;
            border: none;
        }
        .map-info {
            background: var(--primary-white);
            padding: 30px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .map-info-text h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 5px; color: var(--primary-black); }
        .map-info-text p { color: var(--gray-dark); font-size: 0.95rem; }
        .map-directions-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            background: var(--primary-black);
            color: var(--primary-white);
            border-radius: 30px;
            font-weight: 500;
            transition: all var(--transition-speed) ease;
        }
        .map-directions-btn:hover { background: var(--accent-gold); transform: translateY(-3px); }

        /* ==================== FAQ Section ==================== */
        .faq-section { background: var(--primary-white); }
        .faq-grid { max-width: 900px; margin: 0 auto; }
        .faq-item {
            background: var(--off-white);
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
        }
        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all var(--transition-speed) ease;
        }
        .faq-question:hover { background: var(--gray-light); }
        .faq-question h3 { font-size: 1.05rem; font-weight: 600; color: var(--primary-black); margin: 0; padding-right: 20px; }
        .faq-question i { font-size: 1rem; color: var(--accent-gold); transition: transform var(--transition-speed) ease; }
        .faq-item.active .faq-question i { transform: rotate(180deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
        .faq-answer-content { padding: 0 30px 25px; color: var(--gray-dark); line-height: 1.8; }
        .faq-item.active .faq-answer { max-height: 300px; }

        /* ==================== Footer ==================== */
        .footer { background: var(--primary-black); color: var(--primary-white); position: relative; overflow: hidden; }
        .footer::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
        }
        .footer-main { padding: 80px 30px 60px; position: relative; z-index: 1; }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 60px;
        }
        .footer-column h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: var(--primary-white);
            position: relative;
            padding-bottom: 12px;
        }
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--accent-gold);
        }
        .footer-about .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
        .footer-about .footer-logo img { width: 50px; height: 50px; object-fit: contain; }
        .footer-about .footer-logo span { font-size: 1.3rem; font-weight: 700; }
        .footer-about .footer-logo span em { color: var(--accent-gold); font-style: normal; }
        .footer-about p { color: var(--gray-medium); font-size: 0.95rem; line-height: 1.8; margin-bottom: 25px; }
        .footer-social { display: flex; gap: 12px; }
        .footer-social a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--gray-medium);
            transition: all var(--transition-speed) ease;
        }
        .footer-social a:hover {
            background: var(--accent-gold);
            border-color: var(--accent-gold);
            color: var(--primary-white);
            transform: translateY(-3px);
        }
        .footer-keywords { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
        .footer-keywords span {
            background: rgba(255, 255, 255, 0.05);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--gray-medium);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 12px; }
        .footer-links li a, .footer-services li a {
            color: var(--gray-medium);
            font-size: 0.95rem;
            transition: all var(--transition-speed) ease;
        }
        .footer-links li a:hover, .footer-services li a:hover { color: var(--primary-white); padding-left: 10px; }
        .footer-services li a { display: inline-flex; align-items: center; gap: 10px; }
        .footer-services li a i {
            font-size: 0.75rem;
            color: var(--accent-gold);
            opacity: 0;
            transform: translateX(-10px);
            transition: all var(--transition-speed) ease;
        }
        .footer-services li a:hover i { opacity: 1; transform: translateX(0); }
        .footer-contact ul { display: flex; flex-direction: column; gap: 20px; }
        .footer-contact li { display: flex; align-items: flex-start; gap: 15px; }
        .footer-contact li .icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            flex-shrink: 0;
        }
        .footer-contact li .text { display: flex; flex-direction: column; gap: 3px; }
        .footer-contact li .text strong { color: var(--primary-white); font-size: 0.9rem; }
        .footer-contact li .text span, .footer-contact li .text a { color: var(--gray-medium); font-size: 0.9rem; }
        .footer-contact li .text a:hover { color: var(--accent-gold); }
        .footer-opening {
            margin-top: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .footer-opening h4 {
            font-size: 0.9rem;
            color: var(--primary-white);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-opening h4 i { color: var(--accent-gold); }
        .footer-opening p { font-size: 0.85rem; color: var(--gray-medium); line-height: 1.8; }
        .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 25px 30px; }
        .footer-bottom-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .copyright { color: var(--gray-dark); font-size: 0.85rem; }
        .copyright a { color: var(--gray-medium); }
        .copyright a:hover { color: var(--accent-gold); }
        .footer-bottom-links { display: flex; gap: 25px; }
        .footer-bottom-links a { color: var(--gray-dark); font-size: 0.85rem; }
        .footer-bottom-links a:hover { color: var(--accent-gold); }

        /* ==================== WhatsApp & Back to Top ==================== */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 998;
            transition: all var(--transition-speed) ease;
            animation: whatsappPulse 2s infinite;
        }
        .whatsapp-btn:hover { transform: scale(1.1); }
        @keyframes whatsappPulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
        }
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 45px;
            height: 45px;
            background: var(--primary-black);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-white);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-speed) ease;
            z-index: 997;
        }
        .back-to-top.visible { opacity: 1; visibility: visible; }
        .back-to-top:hover { background: var(--accent-gold); border-color: var(--accent-gold); }

        /* ==================== Form Success Message ==================== */
        .form-success {
            display: none;
            text-align: center;
            padding: 40px;
        }
        .form-success.show { display: block; }
        .form-success i { font-size: 4rem; color: var(--success-green); margin-bottom: 20px; }
        .form-success h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; color: var(--primary-black); }
        .form-success p { color: var(--gray-dark); margin-bottom: 25px; }
        .form-success .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 30px;
            background: var(--primary-black);
            color: var(--primary-white);
            border-radius: 30px;
            cursor: pointer;
            transition: all var(--transition-speed) ease;
        }
        .form-success .back-btn:hover { background: var(--accent-gold); }

        /* ==================== Responsive ==================== */
        @media (max-width: 1200px) {
            .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-container { grid-template-columns: 1fr 1fr; gap: 50px; }
        }
        @media (max-width: 992px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .contact-main-grid { grid-template-columns: 1fr; gap: 50px; }
            .page-banner-title { font-size: 2.5rem; }
        }
        @media (max-width: 768px) {
            .section { padding: 60px 0; }
            .section-title { font-size: 2rem; }
            .page-banner { min-height: 300px; }
            .page-banner-title { font-size: 2rem; }
            .contact-info-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .contact-form-wrapper { padding: 30px; }
            .quick-contact-btns { grid-template-columns: 1fr; }
            .map-info { flex-direction: column; text-align: center; }
            .footer-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
            .footer-column h3::after { left: 50%; transform: translateX(-50%); }
            .footer-about .footer-logo { justify-content: center; }
            .footer-social, .footer-keywords { justify-content: center; }
            .footer-links ul, .footer-services ul, .footer-contact ul { align-items: center; }
            .footer-contact li { flex-direction: column; align-items: center; text-align: center; }
            .footer-bottom-container { flex-direction: column; text-align: center; }
            .whatsapp-btn { width: 55px; height: 55px; bottom: 20px; right: 20px; font-size: 24px; }
            .back-to-top { right: 20px; bottom: 85px; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 20px; }
            .logo-text { font-size: 1.1rem; }
            .logo img { height: 40px; }
            .page-banner-title { font-size: 1.7rem; }
            .contact-form-wrapper h2, .contact-details-wrapper h2 { font-size: 1.5rem; }
        }
