
        .footer-secttion {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #ffffff;
            min-height: 20vh;
            display: flex;
            align-items: flex-end;
        }

        footer {
            width: 100%;
            background: #000;
            padding: 80px 0 0;
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-column h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 30px;
            color: #ffffff;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: #ffffff;
            transition: width 0.3s ease;
        }

        .footer-column:hover h3::after {
            width: 80px;
        }

        .brand-logo {
            font-family: 'Sis-JpDotline', 'Poppins', sans-serif;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
            letter-spacing: -1px;
        }

        .footer-column p {
            color: #a0a0a0;
            line-height: 1.8;
            font-size: 15px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 16px;
        }

        .footer-links a {
            color: #a0a0a0;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 1px;
            background: #ffffff;
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
            transform: translateX(5px);
        }

        .footer-links a:hover::before {
            width: 100%;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: #ffffff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 16px;
            flex-shrink: 0;
        }

        .contact-info {
            flex: 1;
        }

        .contact-label {
            font-size: 12px;
            color: #a0a0a0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .contact-value {
            font-size: 15px;
            color: #ffffff;
            font-weight: 500;
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border: 1px solid #333;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a0a0a0;
            font-size: 16px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background: #ffffff;
            border-color: #ffffff;
            color: #000;
            transform: translateY(-3px);
        }

        .subscribe-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 50px;
            margin-bottom: 60px;
            text-align: center;
        }

        .subscribe-section h3 {
            font-size: 28px;
            margin-bottom: 12px;
            color: #ffffff;
        }

        .subscribe-section p {
            color: #a0a0a0;
            margin-bottom: 35px;
            font-size: 15px;
        }

        .subscribe-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .input-group {
            text-align: left;
        }

        .input-group input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 2px dotted #000;
            padding: 12px 0;
            font-size: 15px;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .input-group input:focus {
            outline: none;
            border-bottom-color: #ffffff;
            border-bottom-style: solid;
        }

        .input-group input::placeholder {
            color: #666;
            font-size: 14px;
        }

        .subscribe-button {
            background: #ffffff;
            color: #000;
            border: none;
            padding: 14px 50px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .subscribe-button:hover {
            background: #e0e0e0;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
        }

        .footer-bottom {
            border-top: 1px solid #000;
            padding: 30px 0;
            text-align: center;
        }

        .footer-bottom p {
            color: #666;
            font-size: 14px;
        }

        .footer-bottom a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: #a0a0a0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-column {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .footer-column:nth-child(1) { animation-delay: 0.1s; }
        .footer-column:nth-child(2) { animation-delay: 0.2s; }
        .footer-column:nth-child(3) { animation-delay: 0.3s; }

        @media (max-width: 768px) {
            .footer-grid {
                gap: 40px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .subscribe-section {
                padding: 35px 25px;
            }

            .subscribe-button {
                width: 100%;
                justify-content: center;
            }
        }